Manage conversations programmatically
GET /api/v1/conversations
{ "data": [ { "id": "conv_123", "status": "open", "customer": { "name": "John Smith", "phone": "+1234567890" }, "assigned_to": "user_456", "last_message_at": "2025-11-29T10:30:00Z" } ] }
GET /api/v1/conversations/:id
POST /api/v1/conversations/:id/messages
{ "type": "text", "text": "Hello! How can I help you?" }
PATCH /api/v1/conversations/:id
{ "status": "closed", "assigned_to": "user_789" }