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

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

await client.roomRecordings.delete('0ccc7b54-4df3-4bca-a65a-3da1ecc777f0');
{
  "code": "<string>",
  "title": "<string>",
  "detail": "<string>",
  "source": {
    "pointer": "<string>",
    "parameter": "<string>"
  },
  "meta": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

room_recording_id
string<uuid>
required

The unique identifier of a room recording.

Example:

"0ccc7b54-4df3-4bca-a65a-3da1ecc777f0"

Response

The resource was deleted successfully.