Skip to main content
POST
/
api
/
workflows
/
{id}
/
execute
Manually execute a workflow
curl --request POST \
  --url https://your-instance.example.com/api/workflows/{id}/execute \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactId": "<string>",
  "conversationId": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
contactId
string
conversationId
string

Response

Workflow executed successfully

Generic response envelope. Endpoint-specific fields are intentionally open.