Get a specific Speech to Text batch report request
Retrieves a specific Speech to Text batch report request by ID
GET
/
legacy
/
reporting
/
batch
/
detail
/
records
/
speech
/
to
/
text
/
{id}
JavaScript
import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});const speechToText = await client.legacy.reporting.batchDetailRecords.speechToText.retrieve( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',);console.log(speechToText.data);
import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});const speechToText = await client.legacy.reporting.batchDetailRecords.speechToText.retrieve( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',);console.log(speechToText.data);