POST
/
calling
/
outbound
/
individual
curl --request POST \
  --url https://prod-api.ringg.ai/ca/api/v0/calling/outbound/individual \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <x-api-key>' \
  --data '{
  "name": "John Doe",
  "mobile_number": "+1234567890",
  "agent_id": "830f767a-397e-4b39-82ff-235cd344e2f9",
  "from_number_id": "a1b2c3d4-e5f6-7890-abcd-1234567890ab",
  "custom_args_values": {
    "custom_variable_1": "value1"
  }
}'
{
  "Call Status": "<string>",
  "data": {
    "Unique Call ID": "<string>",
    "Call Direction": "<string>",
    "Call Status": "<string>",
    "From Number": "<string>",
    "To Number": "<string>",
    "Initiated at": "2023-11-07T05:31:56Z",
    "Agent ID": "<string>",
    "System generated message": "<string>"
  }
}

Headers

X-API-KEY
string
required

(Required) Your Ringg AI API key.

Body

application/json

Response

200
application/json

Successful Response: Details about the initiated call.

The response is of type object.