Skip to main content
POST
/
call
Trigger AI Phone Call
curl --request POST \
  --url https://www.callcow.ai/api/call \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "recipient_phone": "+14155552671",
  "workflow_id": "wf_abc123xyz",
  "recipient_name": "John Doe",
  "recipient_email": "[email protected]"
}
'
{
  "success": true,
  "message": "Thanks! Our AI agent will call you shortly."
}

Authorizations

Authorization
string
header
required

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

Body

application/json
recipient_phone
string
required

Phone number of the call recipient in E.164 format

Example:

"+14155552671"

workflow_id
string
required

ID of the workflow to execute

Example:

"wf_abc123xyz"

recipient_name
string

Name of the call recipient

Example:

"John Doe"

recipient_email
string<email>

Email address of the call recipient. Email is recommended for meeting booking calls.

Response

Call successfully triggered

success
boolean
Example:

true

message
string
Example:

"Thanks! Our AI agent will call you shortly."