Skip to main content
POST
/
call
/
end
End Call
curl --request POST \
  --url https://api.kallabot.com/call/end \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "call_sid": "CA1234567890abcdef"
}'
{
  "status": "success",
  "message": "Call ended successfully",
  "call_sid": "CA1234567890abcdef"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
call_sid
string
required

Twilio Call SID to end (e.g. CA... ).

Response

Call ended successfully

status
string
required
Example:

"success"

message
string
required
call_sid
string
required