Skip to main content

Delete a list of call recordings

DELETE 
/recordings/actions/delete

Permanently deletes a list of call recordings.

Request

Body

array

required

Deletes recordings for given ids.

  • Array [

  • string

  • ]

Responses

204: The recordings have been successfully deleted.

default: Unexpected error.

Request samples


curl -L -X DELETE 'https://api.telnyx.com/v2/recordings/actions/delete' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '[
"string"
]'

Response samples


{
"errors": [
{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}