Room Recordings
Delete several room recordings in a bulk.
Deletes the room recordings that match the supplied filters and returns the number of recordings affected. Filters support room, session, participant, recording type, status, duration, and start or end dates.
delete/room_recordings
Query parameters
Consolidated filter parameter (deepObject style). Originally: filter[date_ended_at][eq], filter[date_ended_at][gte], filter[date_ended_at][lte], filter[date_started_at][eq], filter[date_started_at][gte], filter[date_started_at][lte], filter[room_id], filter[participant_id], filter[session_id], filter[status], filter[type], filter[duration_secs]
{
"date_ended_at": {
"eq": "2021-04-25",
"gte": "2021-04-25",
"lte": "2021-04-25"
},
"date_started_at": {
"eq": "2021-04-25",
"gte": "2021-04-25",
"lte": "2021-04-25"
},
"duration_secs": 20,
"participant_id": "0ccc7b54-4df3-4bca-a65a-3da1ecc777f0",
"room_id": "0ccc7b54-4df3-4bca-a65a-3da1ecc777f0",
"session_id": "0ccc7b54-4df3-4bca-a65a-3da1ecc777f0",
"status": "completed",
"type": "audio"
}Consolidated page parameter (deepObject style). Originally: page[size], page[number]
Response
Successful response for Bulk Delete Room recordings requests
Example response
{
"data": {
"room_recordings": 5
}
}