Retrieve a Transcription
Retrieve a single recording transcription.
Permissions
The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice.
Authentication
AuthorizationBasic
SignalWire Basic Authentication using Project ID and API Token.
The client sends HTTP requests with the Authorization header containing
the word Basic followed by a space and a base64-encoded string of project_id:token.
The project ID will be used as the username and the API token as the password.
Example:
```
Authorization: Basic base64(project_id:token)
```
Path parameters
AccountSid
The unique identifier for the account that created this transcription.
Sid
The unique identifier for the transcription.
Response
The request has succeeded.
sid
The unique identifier for the transcription.
account_sid
The unique identifier for the account that created this transcription.
api_version
The version of the SignalWire API.
recording_sid
The unique identifier for the recording that this transcription was created from.
date_created
The date, in RFC 2822 format, this transcription was created.
date_updated
The date, in RFC 2822 format, this transcription was updated.
duration
The duration, in seconds, of the transcribed audio.
price
The charge for the transcription. Null if cost has not been calculated.
price_unit
The currency, in ISO 4217 format, for the price of the transcription.
status
The status of the transcription. Always 'completed' for transcriptions returned by the API.
transcription_text
The text content of the transcription. Null if transcription text is not available.
type
The type of the transcription. Currently always an empty string.
uri
The URI of this resource, relative to the API base URL.