GET
/
interactions
/
{id}
/
transcripts
curl --request GET \
  --url https://api.{environment}.corti.app/v2/interactions/{id}/transcripts/
{
  "transcripts": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "transcriptSample": "<string>"
    }
  ]
}

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 for which transcripts should be retrieved. Must be a valid UUID.

Query Parameters

sort
string

Describes transcript attribute for sorting

direction
string

Describes sorting direction

pageSize
integer

The number of transcripts to return. For example, a pageSize of 10 will return a maximum of 10 interactions.

index
integer

The number of transcripts to skip. For example, index=2 with pageSize=10 will skip the first 10 interactions and return 11-20.

full
boolean

Display full transcripts in listing

Response

200
application/json
Returns a list of transcripts associated with the interaction.
transcripts
object[]