Skip to main content
POST
/
v1
/
delete-calls
curl -X POST https://api.voicy.co/v1/delete-calls \
  -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
}
Permanently delete multiple calls and all their associated data, including recordings and transcripts, in a single batch request.
This action cannot be undone. All call data will be permanently removed.

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/v1/delete-calls \
  -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
}