API Reference
Application API
- Account AgentBots
- Agents
- Canned Responses
- Custom Attributes
- Contacts
- Contact Labels
- Automation Rule
- Help Center
- Conversations
- Conversation Assignments
- Inboxes
- Messages
- Integrations
- Profile
- Teams
- Custom Filters
- Webhooks
- Reports
Platform API
- Accounts
- Account Users
- AgentBots
- Users
Client API
- Contacts API
- Conversations API
- Messages API
Other APIs
- CSAT Survey Page
Conversations API
List all conversations
List all conversations for the contact
GET
/
public
/
api
/
v1
/
inboxes
/
{inbox_identifier}
/
contacts
/
{contact_identifier}
/
conversations
curl --request GET \
--url https://app.chatwoot.com/public/api/v1/inboxes/{inbox_identifier}/contacts/{contact_identifier}/conversations
[
{
"id": 123,
"inbox_id": "<string>",
"messages": [
{
"id": 123,
"content": "<string>",
"account_id": 123,
"inbox_id": 123,
"conversation_id": 123,
"message_type": 0,
"created_at": 123,
"updated_at": 123,
"private": true,
"status": "sent",
"source_id": "<string>",
"content_type": "text",
"content_attributes": {},
"sender_type": "contact",
"sender_id": 123,
"external_source_ids": {},
"additional_attributes": {},
"processed_message_content": "<string>",
"sentiment": {},
"conversation": {},
"attachment": {},
"sender": {}
}
],
"contact": {}
}
]
Path Parameters
The identifier obtained from API inbox channel
The source id of contact obtained on contact create
Response
200
application/json
Success
Array of conversations
curl --request GET \
--url https://app.chatwoot.com/public/api/v1/inboxes/{inbox_identifier}/contacts/{contact_identifier}/conversations
[
{
"id": 123,
"inbox_id": "<string>",
"messages": [
{
"id": 123,
"content": "<string>",
"account_id": 123,
"inbox_id": 123,
"conversation_id": 123,
"message_type": 0,
"created_at": 123,
"updated_at": 123,
"private": true,
"status": "sent",
"source_id": "<string>",
"content_type": "text",
"content_attributes": {},
"sender_type": "contact",
"sender_id": 123,
"external_source_ids": {},
"additional_attributes": {},
"processed_message_content": "<string>",
"sentiment": {},
"conversation": {},
"attachment": {},
"sender": {}
}
],
"contact": {}
}
]
Assistant
Responses are generated using AI and may contain mistakes.