Backend API
Get a list of all AI workflows
cURL
curl --request GET \ --url https://api.wacht.dev/ai-workflows \ --header 'Authorization: Bearer <token>'
{ "total": 100, "page": 1, "per_page": 20, "total_pages": 5, "data": [ { "id": "<string>", "name": "Customer Onboarding Workflow", "description": "<string>", "trigger_type": "webhook", "steps": [ { "id": "<string>", "name": "<string>", "type": "agent", "config": {} } ], "is_active": true, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ] }
JWT Bearer token authentication using the Authorization header
manual
webhook
schedule
event
Successful response
100
1
20
5
Show child attributes