Skip to main content
POST
/
api
/
v1
/
end-web-call
/
{call_id}
End web call
curl --request POST \
  --url https://voxworks.ai/api/v1/end-web-call/{call_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "completed",
  "end_reason": "api_ended"
}
'
{
  "success": true,
  "call_id": "<string>",
  "status": "<string>",
  "end_reason": "<string>",
  "progress": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.voxworks.ai/llms.txt

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

Authorizations

Authorization
string
header
required

API key from Voxworks, sent as Authorization: Bearer YOUR_API_KEY.

Path Parameters

call_id
string
required

Unique call ID.

Body

application/json
status
string
default:completed
end_reason
string
default:api_ended

Response

Web call ended.

success
boolean
Example:

true

call_id
string
status
string
end_reason
string
progress
string