Returns the full message history of a conversation in chronological order.
Required ability: Tickets-History
Rate limit: 40 requests / minute
GET
/Company/Conversation/{Conversation}/history
curl \
--request GET 'https://velents-agents.velents.ai/Company/Conversation/cnv_01HX.../history' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"id": "msg_01HX...",
"author": {
"type": "customer",
"name": "Acme Corp"
},
"body": "Ticket created via API",
"created_at": "2026-05-06T10:14:00Z"
}
]
}