Skip to main content
PUT
/
call
/
cancel
/
{callId}
Cancel a queued outbound call
curl --request PUT \
  --url https://api.subverseai.com/api/call/cancel/{callId} \
  --header 'x-api-key: <api-key>'
{
  "responseCode": 200,
  "message": "Call canceled successfully!",
  "data": {
    "removedJobs": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.subverseai.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Authentication header containing API key from SubVerse dashboard.

Path Parameters

callId
string
required

unique call identifier

Response

200 - application/json

Call canceled successfully.

responseCode
integer
required

Always returns 200 value, with error or success response details in message.

message
string
required

Success or error message with description.

data
any | null

Additional details if available.