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": {}
}Synchronously delete a Room Recording.
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": {}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of a room recording.
"0ccc7b54-4df3-4bca-a65a-3da1ecc777f0"
The resource was deleted successfully.
Was this page helpful?