Get details of a specific AI workflow
curl --request GET \
--url https://api.wacht.dev/ai-workflows/{workflow_id} \
--header 'Authorization: Bearer <token>'
{
"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
(i64 formatted as string)
Successful response
The response is of type object
.
curl --request GET \
--url https://api.wacht.dev/ai-workflows/{workflow_id} \
--header 'Authorization: Bearer <token>'
{
"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"
}