GET List Conversations
Introduction
Retrieves all conversations for a user, taking into account their organization context.
GET /conversations
Sample request
curl -X GET 'https://{api_endpoint}/conversations'
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
Sample response
[
{
"id": 419,
"conversation_id": "fb59e136-8a31-4a9f-bf21-b615664a64b1",
"created_at": "2024-09-09T07:59:23.351889+00:00",
"updated_at": "2024-09-09T07:59:23.351857+00:00",
"agent_id": 172,
"agent": {
...agent_info
},
"user_id": 1,
"status": "active",
"meta_data": {}
}
]
Last updated