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.retrieve('recording_id');console.log(recording.data);
Retrieves the details of an existing call recording.
GET
/
recordings
/
{recording_id}
JavaScript
Copy
Ask AI
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.retrieve('recording_id');console.log(recording.data);