Shared Inbox
Conversations group messages by contact and device so you can review inbound chats, assign owners, and reply without losing context.In the dashboard
- In the sidebar, open Messaging and choose Inbox.
- Filter by status, device, Mine, or Unassigned.
- Open a thread to read the history, change status, assign a teammate, and reply.
How it works
- Each contact on a linked device gets a conversation thread.
- New inbound messages open or update that thread automatically.
- You can mark threads open, pending, or closed, assign a teammate, and mark them read.
- Replies send through the same messaging pipeline as normal API sends.
Work with conversations from the API
| Action | Method | Endpoint |
|---|---|---|
| List conversations | GET | /api/v1/conversations |
| Get a conversation | GET | /api/v1/conversations/{id} |
| Update status / assignee / read | PATCH | /api/v1/conversations/{id} |
| List messages in a thread | GET | /api/v1/conversations/{id}/messages |
| Reply with text or media | POST | /api/v1/conversations/{id}/reply |
status, whatsapp_account_id, assignee_user_id, search (phone).
SDK example
Media replies
In the dashboard composer you can attach a file or paste a media URL (image, document, video, voice).API replies accept
message_type, media_url / media_base64, plus optional caption, filename, and mimetype.
Each conversation still sends from its linked device (shown as Sending as …).
Full field details are in the API Reference.