Skip to main content
POST
Create a single outbound call
Legacy endpoint - deprecated. Unversioned endpoints are scheduled for removal on July 31, 2026. Use the /v1 version for new integrations. This endpoint remains available for existing integrations until then.
Initiates a single outbound call to the specified phone number using the given agent. The call starts as soon as the recipient answers.

When to use this

Use this when you need to make a single, immediate call, for example when triggering a follow-up after a form submission, sending a verification call, or making a click-to-call request from your CRM.

Destination validation

phone_number must be a valid international phone number in E.164 format (including the country code). For non-SIP routes, the destination country and prefix must also be enabled in Workspace Settings > Telephony Config before the call is created. Invalid phone number formats return 400 Bad Request. Unsupported countries, unsupported prefixes, and workspaces with no enabled destination countries return 403 Forbidden.

Dynamic variables

Pass a metadata object to inject context into the agent’s prompt at call time. Reference these values in the prompt using {{variable_name}}:
In your prompt, you can then write: “Hi , calling to confirm your appointment.”

Authorizations

Authorization
string
header
required

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

Headers

x-organization-id
string
required

RSA encrypted organization ID (base64 format)

Example:

"BASE64_ENCRYPTED_ORG_ID_HERE"

Body

application/json
phone_number
string
required

Phone number to call (must include country code). Format: +[country code][phone number]

Example:

"+911234567890"

agent_id
string
required

Agent ID to use for the call. Must belong to the authenticated organization.

Example:

"mgao6051Rk718Y"

metadata
object
required

Metadata for the call including customer information and any additional context. This data will be available during the call for personalization.

Example:
agent_version_number
number

Specific agent version number to use (optional). If provided, must be a published version. If not provided, will use the latest published version.

Example:

2

notes
object

Optional notes stored on the call log. Must be a JSON object with at most 15 top-level keys.

Example:

Response

Call created successfully

id
string
required

Unique call ID for tracking. Use this ID to reference the call in other API endpoints.

Example:

"call_mfgsn90vwcozgb"

to_phone_number
string
required

The phone number that will receive the call.

Example:

"+911234567890"

agent_id
string
required

The ID of the agent used for this call.

Example:

"agent_mfgsn90vwcozgb"

agent_version_number
number

The version number of the agent used for this call.

Example:

2