Skip to main content
POST
/
api
/
v1
/
phone-numbers
/
outbound
/
call
Start an outbound call
curl --request POST \
  --url https://dev-chat-engine.actualize.ae/api/v1/phone-numbers/outbound/call \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "agentPhoneNumberId": "1234567890",
  "agentId": "agent123",
  "customerPhoneNumber": "123-122-11"
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
customerPhoneNumber
string
required

customer phone number

Example:

"123-122-11"

agentPhoneNumberId
string

Agent phone number id

Example:

"1234567890"

agentId
string

Agent ID

Example:

"agent123"

Response

200

Outbound call started successfully.