Skip to main content

Delete a call recording

DELETE 
/recordings/:id

Permanently deletes a call recording.

Request

Path Parameters

    id stringrequired

    ID of Call Recording to delete

Responses

200: Call recording response

401: Unauthorized

404: Resource not found

422: Unprocessable entity. Can be caused by invalid UUID format

Request samples


curl -L -X DELETE 'https://api.telnyx.com/recordings/:id' \
-H 'Accept: application/json'

Response samples


{
"data": {
"id": "string",
"record_type": "string",
"call": {
"start_time": "string",
"end_time": "string",
"duration": 0,
"to": "string",
"from": "string",
"telnyx_session_uuid": "string",
"connection_id": "string"
},
"download_urls": {
"wav": "string"
},
"created_at": "string",
"updated_at": "string"
}
}