Trigger an Outbound Agent Run by API Trigger Node
POST
/api/v1/public/agent/{uuid}Initiate a phone call against the published agent. Executes the workflow's currently released definition.
cURL example
curl -X POST \
'http://localhost:8000/api/v1/public/agent/{uuid}' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json' \
-d '{}'Parameters
| Name | Location | Type | Description |
|---|---|---|---|
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"
}