Debriefer

List transcript entries with pagination

GET
/api/v1/transcripts/{id}/entries

Path Parameters

id*string

Query Parameters

limit?integer
Default20
Range1 <= value <= 100
starting_after?string

Response Body

application/json

curl -X GET "https://loading/api/v1/transcripts/trn_1234567890abcdef/entries"
{
  "object": "list",
  "data": [
    {
      "id": "string",
      "transcript_id": "string",
      "organization_id": "string",
      "test_mode": true,
      "role": "agent",
      "content": "string",
      "entry_type": "utterance",
      "timestamp": "string",
      "duration_ms": -2147483648,
      "session_id": "string",
      "node_id": "string",
      "question_key": "string",
      "confidence": -8388608,
      "created_at": "string",
      "object": "transcript_entry"
    }
  ],
  "has_more": true,
  "next_cursor": "string"
}
Empty