POST
/
api
/
v1
/
trigger-call
Trigger Call
curl --request POST \
  --url https://api.vodex.ai/api/v1/trigger-call \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'dburl: <dburl>' \
  --data '{
  "callList": [
    {
      "firstName": "<string>",
      "lastName": "<string>",
      "phone": "<string>"
    }
  ],
  "projectId": "<string>",
  "consentForCalls": true
}'
{
  "success": true,
  "message": "<string>",
  "data": {
    "callsTriggered": 123,
    "callIds": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

API Key authentication. Pass your API key in the Authorization header.

Headers

Authorization
string
required

API Key - authentication token for your account

dburl
string
required

Database URL - unique account identifier

Body

application/json

Call trigger payload - supports basic calls, dynamic fields, campaigns, or insights collection

The body is of type object.

Response

200
application/json

Calls triggered successfully

The response is of type object.