import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
await client.texml.accounts.transcriptions.json.deleteRecordingTranscriptionSidJson(
'6a09cdc3-8948-47f0-aa62-74ac943d6c58',
{ account_sid: 'account_sid' },
);{
"errors": [
{
"detail": "Resource not found"
}
]
}Permanently deletes a recording transcription.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
await client.texml.accounts.transcriptions.json.deleteRecordingTranscriptionSidJson(
'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 transcription by id.
"6a09cdc3-8948-47f0-aa62-74ac943d6c58"
The resource was deleted successfully.
Was this page helpful?