Retrieves all Speech to Text batch report requests for the authenticated user
GET
/
legacy
/
reporting
/
batch
/
detail
/
records
/
speech
/
to
/
text
JavaScript
import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});const speechToTexts = await client.legacy.reporting.batchDetailRecords.speechToText.list();console.log(speechToTexts.data);
import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});const speechToTexts = await client.legacy.reporting.batchDetailRecords.speechToText.list();console.log(speechToTexts.data);