Fetch a recording transcription resource
GET/texml/Accounts/:account_sid/Transcriptions/:recording_transcription_sid.json
Returns the recording transcription resource identified by its ID.
Request
Path Parameters
account_sid stringrequired
The id of the account the resource belongs to.
recording_transcription_sid uuidrequired
Uniquely identifies the recording transcription by id.
Responses
200: Successful get Recording Transcription Response
- application/json
404: Resource not found
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"account_sid": "61bf923e-5e4d-4595-a110-56190ea18a1b",
"call_sid": "v3:KBnLO0ZK3DhKM5s7bE9VluaSmKsOchKht_fUYvxcp8ysbmzCCtpkmA",
"api_version": "2010-04-01",
"date_created": "Fri, 11 Aug 2023 19:12:11 +0000",
"date_updated": "Fri, 11 Aug 2023 19:12:11 +0000",
"duration": "12",
"sid": "e9cea0be-7dbd-4b98-98b1-c0089d9d43b0",
"recording_sid": "e9cea0be-7dbd-4b98-98b1-c0089d9d43b0",
"status": "completed",
"transcription_text": "Good morning, how may I help you?",
"uri": "/v2/texml/Accounts/61bf923e-5e4d-4595-a110-56190ea18a1b/Transcriptions/b08f0fa1-a32c-4218-b3b5-9cf78941ccac.json"
}
{
"errors": [
{
"detail": "Resource not found"
}
]
}