Skip to main content
DELETE
/
room_recordings
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const response = await client.roomRecordings.deleteBulk();

console.log(response.data);
{
  "data": {
    "room_recordings": 5
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

filter
object

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]

page
object

Consolidated page parameter (deepObject style). Originally: page[size], page[number]

Response

Successful response for Bulk Delete Room recordings requests

data
object