curl --request GET \
--url https://api.open.cx/chat/sessions/{session_id}/history{
"items": [
{
"created_at": "2023-11-07T05:31:56Z",
"event": {
"type": "<string>",
"sender": {
"type": "<string>",
"name": "<string>"
},
"content": {
"type": "<string>",
"text": "<string>"
}
}
}
],
"next": "<string>"
}Returns a paginated list of events (messages, handoffs, status changes, etc.) for a chat session.
curl --request GET \
--url https://api.open.cx/chat/sessions/{session_id}/history{
"items": [
{
"created_at": "2023-11-07T05:31:56Z",
"event": {
"type": "<string>",
"sender": {
"type": "<string>",
"name": "<string>"
},
"content": {
"type": "<string>",
"text": "<string>"
}
}
}
],
"next": "<string>"
}Was this page helpful?