Check out our upcoming events and meetups! View events →
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const recording = await client.recordings.delete('recording_id');
console.log(recording.data);Permanently deletes a call recording.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const recording = await client.recordings.delete('recording_id');
console.log(recording.data);Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Uniquely identifies the recording by id.
A response with a single recording resource.
Show child attributes
Was this page helpful?