Skip to main content
POST
/
api
/
calls
/
sdk
/
initiate
Record SDK call initiation (browser to phone)
curl --request POST \
  --url https://your-instance.example.com/api/calls/sdk/initiate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactId": "<string>",
  "phoneNumber": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json
contactId
string
phoneNumber
string

Response

Call initiated

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