List chat events
GET/v1/chats/{chat}/events
Lists the chat’s event log: the ordered record you rebuild your own
state from. Each entry carries a seq that only ever counts up, with no
gaps; page with after_seq.
List chat events
curl https://messages.api.linqapp.com/v1/chats/$CHAT/events \
-H "Authorization: Bearer $LINQ_AMB_API_KEY"{
"data": [
{
"seq": 13,
"type": "message_received",
"actor": "customer",
"payload": {
"body": "where is my driver?"
},
"created_at": "2026-08-06T14:01:58Z"
}
]
}Returns Examples
{
"data": [
{
"seq": 13,
"type": "message_received",
"actor": "customer",
"payload": {
"body": "where is my driver?"
},
"created_at": "2026-08-06T14:01:58Z"
}
]
}