action rev_get_transcript_by_id { label: "Get Transcript By Id" description: "Returns the transcript for a completed transcription job. Transcript can be returned as either JSON or plaintext format. Transcript output format can be specified in the `Accept` header. Returns JSON by default.\n***\nNote: For streaming jobs, transient failure of our storage during a live session may prevent the final hypothesis elements from saving properly, resulting in an incomplete transcript. This is rare, but not impossible. To guarantee 100% completeness, we recommend capturing all final hypothesis when you receive them on the client.\n" provider: rev method: GET path: "/jobs/{id}/transcript" encoding: json input: { type: "object" properties: { Accept: { type: "string" enum: ["application/vnd.rev.transcript.v1.0+json", "text/plain"] } } additionalProperties: false } output: { type: "object" additionalProperties: true } }