Recording Transcriptions

View as Markdown

Recording transcriptions are the transcribed texts that were generated from voice call recordings. Transcriptions are audio files that were converted into readable text.

Properties

sidstringRequiredformat: "uuid"
The unique identifier for the transcription.
account_sidstringRequiredformat: "uuid"
The unique identifier for the account that created this transcription.
api_versionstringRequired
The version of the SignalWire API.
recording_sidstringRequiredformat: "uuid"
The unique identifier for the recording that this transcription was created from.
date_createdstringRequired
The date, in RFC 2822 format, this transcription was created.
date_updatedstringRequired
The date, in RFC 2822 format, this transcription was updated.
durationintegerRequired>=0
The duration, in seconds, of the transcribed audio.
pricestring or nullRequired
The charge for the transcription. Null if cost has not been calculated.
price_unitstringRequired
The currency, in ISO 4217 format, for the price of the transcription.
statusstringRequired
The status of the transcription. Always 'completed' for transcriptions returned by the API.
transcription_textstring or nullRequired
The text content of the transcription. Null if transcription text is not available.
typestringRequired
The type of the transcription. Currently always an empty string.
uristringRequired
The URI of this resource, relative to the API base URL.

Example object

The Transcription Object
1{
2 "sid": "string",
3 "account_sid": "string",
4 "api_version": "string",
5 "recording_sid": "string",
6 "date_created": "string",
7 "date_updated": "string",
8 "duration": 0,
9 "price": "string",
10 "price_unit": "string",
11 "status": "string",
12 "transcription_text": "string",
13 "type": "string",
14 "uri": "string"
15}