action twilio_fetch_transcription { label: "FetchTranscription" description: "Fetch an instance of a Transcription" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Transcriptions/{Sid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Sid: { type: "string" } } required: ["AccountSid", "Sid"] additionalProperties: false } output: { type: "object" properties: { account_sid: { type: "string" description: "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Transcription resource." } api_version: { type: "string" description: "The API version used to create the transcription." } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } date_updated: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } duration: { type: "string" description: "The duration of the transcribed audio in seconds." } price: { type: "number" description: "The charge for the transcript in the currency associated with the account. This value is populated after the transcript is complete so it may not be available immediately." } price_unit: { type: "string" format: "currency" description: "The currency in which `price` is measured, in [ISO 4127](https://www.iso.org/iso/home/standards/currency_codes.htm) format (e.g. `usd`, `eur`, `jpy`)." } recording_sid: { type: "string" description: "The SID of the [Recording](https://www.twilio.com/docs/voice/api/recording) from which the transcription was created." } sid: { type: "string" description: "The unique string that that we created to identify the Transcription resource." } status: { type: "string" enum: ["in-progress", "completed", "failed"] } transcription_text: { type: "string" description: "The text content of the transcription." } type: { type: "string" description: "The transcription type. Can only be: `fast`." } uri: { type: "string" description: "The URI of the resource, relative to `https://api.twilio.com`." } } } }