import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
await client.texml.accounts.recordings.json.deleteRecordingSidJson('6a09cdc3-8948-47f0-aa62-74ac943d6c58', {
account_sid: 'account_sid',
});{
"errors": [
{
"detail": "Resource not found"
}
]
}Deletes recording resource identified by recording id.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
await client.texml.accounts.recordings.json.deleteRecordingSidJson('6a09cdc3-8948-47f0-aa62-74ac943d6c58', {
account_sid: 'account_sid',
});{
"errors": [
{
"detail": "Resource not found"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The id of the account the resource belongs to.
Uniquely identifies the recording by id.
"6a09cdc3-8948-47f0-aa62-74ac943d6c58"
The resource was deleted successfully.
Was this page helpful?