Trigger an Outbound Agent Run by Agent UUID
POST
/api/v1/public/agent/workflow/{workflow_uuid}Initiate a phone call against the published workflow identified by UUID.
cURL example
curl -X POST \
'http://localhost:8000/api/v1/public/agent/workflow/{workflow_uuid}' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json' \
-d '{}'Parameters
| Name | Location | Type | Description |
|---|---|---|---|
workflow_uuidrequired | path | string | — |
X-API-Keyrequired | header | string | — |
Request body
application/jsonView schema
{
"$ref": "#/components/schemas/TriggerCallRequest"
}Responses
200Successful Responseapplication/jsonView schema
{
"$ref": "#/components/schemas/TriggerCallResponse"
}404Not found422Validation Errorapplication/jsonView schema
{
"$ref": "#/components/schemas/HTTPValidationError"
}