GET
/
interactions
/
{id}
/
transcripts
/
{transcriptId}
curl --request GET \
  --url https://api.{environment}.corti.app/v2/interactions/{id}/transcripts/{transcriptId}
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "metadata": {
    "participantsRoles": [
      {
        "channel": 123,
        "role": "doctor"
      }
    ]
  },
  "transcripts": [
    {
      "channel": 123,
      "participant": 123,
      "text": "<string>",
      "start": 123,
      "end": 123
    }
  ]
}

Headers

Tenant-Name
string

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

Example:

"copiloteu"

Path Parameters

id
string
required

The unique identifier of the interaction containing the transcript.

transcriptId
string
required

The unique identifier of the transcript to retrieve.

Response

200
application/json
id
string

The unique identifier of the transcript.

metadata
object

Additional information about the participants involved in the transcript.

transcripts
object[]

An array of transcripts.