Get all Speech to Text batch report requests
Retrieves all Speech to Text batch report requests for the authenticated user
GET
JavaScript
JavaScript
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Check out our upcoming events and meetups! View events →
Retrieves all Speech to Text batch report requests for the authenticated user
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);{
"data": [
{
"id": "ab76c3b6-80cd-11eb-9439-0242ac130002",
"created_at": "2020-07-01T00:00:00-06:00",
"start_date": "2020-07-01T00:00:00-06:00",
"end_date": "2020-07-01T00:00:00-06:00",
"download_link": "https://portal-cdrs-usage.s3.amazonaws.com",
"record_type": "speech_to_text_report"
}
]
}Was this page helpful?
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);{
"data": [
{
"id": "ab76c3b6-80cd-11eb-9439-0242ac130002",
"created_at": "2020-07-01T00:00:00-06:00",
"start_date": "2020-07-01T00:00:00-06:00",
"end_date": "2020-07-01T00:00:00-06:00",
"download_link": "https://portal-cdrs-usage.s3.amazonaws.com",
"record_type": "speech_to_text_report"
}
]
}