Skip to main content
POST
/
v2
/
call
/
abort
Abort Call
curl --request POST \
  --url https://api.voice-agents.miraiminds.co/v2/call/abort \
  --header 'Content-Type: application/json' \
  --header 'workspace: <workspace>' \
  --header 'x-private-key: <api-key>' \
  --header 'x-public-key: <api-key>' \
  --data '
{
  "callId": "<string>"
}
'
{
  "message": "Call aborted successfully"
}

Authorizations

x-public-key
string
header
required
x-private-key
string
header
required

Headers

x-public-key
string
required
x-private-key
string
required
workspace
string
required

Body

application/json
callId
string
required

Response

Call aborted

message
string
Example:

"Call aborted successfully"