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
}
}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
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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]
Show child attributes
Show child attributes
ISO 8601 date for filtering room recordings ended on that date.
"2021-04-25"
ISO 8601 date for filtering room recordings ended on or after that date.
"2021-04-25"
ISO 8601 date for filtering room recordings ended on or before that date.
"2021-04-25"
Show child attributes
ISO 8601 date for filtering room recordings started on that date.
"2021-04-25"
ISO 8601 date for filtering room recordings started on or after that date.
"2021-04-25"
ISO 8601 date for filtering room recordings started on or before that date.
"2021-04-25"
room_id for filtering room recordings.
"0ccc7b54-4df3-4bca-a65a-3da1ecc777f0"
participant_id for filtering room recordings.
"0ccc7b54-4df3-4bca-a65a-3da1ecc777f0"
session_id for filtering room recordings.
"0ccc7b54-4df3-4bca-a65a-3da1ecc777f0"
status for filtering room recordings.
"completed"
type for filtering room recordings.
"audio"
duration_secs greater or equal for filtering room recordings.
20
Was this page helpful?