Skip to main content
POST
/
v1
/
call-delete
curl -X POST https://api.voicy.co/functions/v1/call-delete \
  -H "Authorization: Bearer voicy_sk_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "call_ids": [
      "550e8400-e29b-41d4-a716-446655440000",
      "550e8400-e29b-41d4-a716-446655440001",
      "550e8400-e29b-41d4-a716-446655440002"
    ]
  }'
{
  "deleted_count": 3
}

Documentation Index

Fetch the complete documentation index at: https://docs.voicy.co/llms.txt

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

Delete multiple calls in a single batch request. Deleted calls will no longer appear in call lists or search results. Call data (duration, cost, transcript) is preserved for billing purposes.

Request Body

call_ids
string[]
required
Array of call IDs to delete (UUID format). Maximum 100 calls per request.

Response

deleted_count
integer
The number of calls that were deleted.
curl -X POST https://api.voicy.co/functions/v1/call-delete \
  -H "Authorization: Bearer voicy_sk_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "call_ids": [
      "550e8400-e29b-41d4-a716-446655440000",
      "550e8400-e29b-41d4-a716-446655440001",
      "550e8400-e29b-41d4-a716-446655440002"
    ]
  }'
{
  "deleted_count": 3
}