Skip to main content
DELETE
/
texml
/
Accounts
/
{account_sid}
/
Recordings
/
{recording_sid}
.json
JavaScript
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"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

account_sid
string
required

The id of the account the resource belongs to.

recording_sid
string<uuid>
required

Uniquely identifies the recording by id.

Example:

"6a09cdc3-8948-47f0-aa62-74ac943d6c58"

Response

The resource was deleted successfully.