Skip to main content
POST
/
send-call
Send a call
curl --request POST \
  --url https://api.kuralynx.com/v1/send-call \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "agent_id": "<string>",
  "call_to": "<string>"
}'
{
  "status": "success",
  "call_id": "<string>",
  "message": "Call successfully queued"
}

Authorizations

Authorization
string
header
required

API key for authentication

Body

application/json

Call request parameters

agent_id
string
required

The ID of the agent that will handle the call

call_to
string
required

Mobile number to call with country code (e.g., +1234567890)

Response

Call initiated successfully

status
string

Status of the call initiation

Example:

"success"

call_id
string

Unique identifier for the initiated call

message
string

Success message

Example:

"Call successfully queued"