Triggers a new outbound call to the specified phone number. The call will be queued and processed by the outbound calling system.
Request
Path parameters
Connector ID for outbound calls
Body
Phone number to call in E.164 format (e.g., +14155552671)
Response
Unique identifier for the triggered call (starts with OUT-). Use this to check call status.
Example
curl -X POST https://api.us-1.platform.polyai.app/api/v1/your-account-id/your-project-id/outbound-call/trigger \
-H "X-CONNECTOR-ID: YOUR_CONNECTOR_ID" \
-H "Content-Type: application/json" \
-d '{
"phone_number": "+14155552671"
}'
Response example
{
"conversation_id": "OUT-550e8400-e29b-41d4-a716-446655440000"
}
Error responses
Invalid request parameters. Check phone number format.
Invalid or missing connector ID.
500 Internal Server Error
Failed to queue the outbound call. Retry with exponential backoff.
Notes
- Phone numbers must be in E.164 format (international format with + prefix)
- The returned
conversation_id starts with OUT- to distinguish outbound calls
- Use the Get call status endpoint to monitor call progress
- Call status data is retained for approximately 2 hours after the call ends