Delete several room recordings in a bulk.
DELETE/room_recordings
Request
Query Parameters
ISO 8601 date for filtering room recordings ended on that date.
ISO 8601 date for filtering room recordings ended after that date.
ISO 8601 date for filtering room recordings ended before that date.
ISO 8601 date for filtering room recordings started on that date.
ISO 8601 date for filtering room recordings started after that date.
ISO 8601 date for filtering room recordings started before that date.
room_id for filtering room recordings.
participant_id for filtering room recordings.
session_id for filtering room recordings.
status for filtering room recordings.
type for filtering room recordings.
duration_secs equal for filtering room recordings.
duration_secs less or equal for filtering room recordings.
duration_secs greater or equal for filtering room recordings.
Possible values: >= 1
and <= 250
Default value: 20
The size of the page.
Possible values: >= 1
Default value: 1
The page number to load.
Responses
201: Successful response for Bulk Delete Room recordings requests
- application/json
422: Unprocessable entity. Check the 'detail' field in response for details.
- application/json
Request samples
curl -L -X DELETE 'https://api.telnyx.com/v2/room_recordings' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": {
"room_recordings": 5
}
}
{
"errors": [
{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}