List chat transcript
GET/v1/chats/{chat}/transcript
Lists the chat as a conversation to display: what the customer saw, in order.
Behavior
- The same rows
/eventspages, rebuilt for rendering: each carries akindto switch on, the message’s canonicalparts, and the delivery state of each outbound message. - Same paging (
after_seq,limit) and same bounds as/events. Use this to draw a chat; use/eventsto rebuild state.
List chat transcript
curl https://messages.api.linqapp.com/v1/chats/$CHAT/transcript \
-H "Authorization: Bearer $LINQ_AMB_API_KEY"{
"data": [
{
"seq": 13,
"kind": "customer_message",
"event_type": "message_received",
"actor": "customer",
"created_at": "2026-08-06T14:01:58Z",
"parts": [
{
"type": "text",
"body": "where is my driver?"
}
]
}
]
}Returns Examples
{
"data": [
{
"seq": 13,
"kind": "customer_message",
"event_type": "message_received",
"actor": "customer",
"created_at": "2026-08-06T14:01:58Z",
"parts": [
{
"type": "text",
"body": "where is my driver?"
}
]
}
]
}