v1

latestOpenAPI 3.1.02026-07-2676188241.3 KB
Transcripts

Get Transcript

Retrieve a transcript from a specific interaction.<br/><Note>Each interaction may have more than one transcript associated with it. Use the List Transcript request (GET /interactions/{id}/transcripts/) to see all transcriptIds available for the interaction.<br/><br/>The client can poll this Get Transcript endpoint (GET /interactions/{id}/transcripts/{transcriptId}/status) for transcript status changes:<br/>- 200 OK with status processing, completed, or failed<br/>- 404 Not Found if the interactionId or transcriptId are invalid<br/><br/>Status of completed indicates the transcript is finalized. If the transcript is retrieved while status is processing, then it will be incomplete.</Note>

get/interactions/{id}/transcripts/{transcriptId}

Path parameters

idstring uuid required
Example:f47ac10b-58cc-4372-a567-0e02b2c3d479

The unique identifier of the interaction. Must be a valid UUID.

transcriptIdstring uuid required
Example:f47ac10b-58cc-4372-a567-0e02b2c3d479

The unique identifier of the transcript. Must be a valid UUID.

Headers

Tenant-Namestring required

Identifies a distinct entity within Corti's multi-tenant system. Ensures correct routing and authentication of the request.

Example:base

Identifies a distinct entity within Corti's multi-tenant system. Ensures correct routing and authentication of the request.

Response

idstring uuid required
recordingIdstring uuid required
status'completed' | 'processing' | 'failed' required

Possible values for transcript processing status.

Example response

{
  "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "recordingId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
}