Fetch a Transcription
GET/v2/transcriptions/:id
Fetches a Conversation Transcription
Request
Path Parameters
id stringrequired
Transcription ID
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
id uuidrequired
Transcription Id
language_code string
Possible values: [en-AU
, en-AB
, en-GB
, en-IN
, en-IE
, en-NZ
, en-ZA
, en-US
, en-WL
, es-ES
, es-US
, nl-NL
, it-IT
, fr-FR
, fr-CA
, de-DE
, de-CH
]
The text's BCP-47 language code, such as "en-US" or "sr-Latn".
Reference: http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
created_at date-time
Date transcription was created
updated_at date-time
Date transcription was last updated
conversation object
Reference to the Conversation
id string
_href uri
transcription_sentences object
Reference to the transcription sentences
id string
_href uri
transcription_artifact object
Reference to the transcription artifact
id string
_href uri
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"language_code": "en-AU",
"created_at": "2024-12-03T21:47:47.586Z",
"updated_at": "2024-12-03T21:47:47.586Z",
"conversation": {
"id": "string",
"_href": "string"
},
"transcription_sentences": {
"id": "string",
"_href": "string"
},
"transcription_artifact": {
"id": "string",
"_href": "string"
}
}
Loading...