AgentBots
Inbox API
Conversations API
Contact Labels
CSAT Survey Page
Account AgentBots
Agents
Canned Responses
Canned Response
Custom Attributes
Contacts
Automation Rule
Help Center
Conversations
Conversation Assignment
Conversation Labels
Inboxes
Integrations
Profile
Teams
Custom Filters
Messages
Get messages
Messages
Get messages
List all messages of a conversation
GET
/
api
/
v1
/
accounts
/
{account_id}
/
conversations
/
{conversation_id}
/
messages
curl --request GET \
--url https://app.chatwoot.com/api/v1/accounts/{account_id}/conversations/{conversation_id}/messages
[
{
"id": 123,
"content": "<string>",
"content_type": "text",
"content_attributes": {},
"message_type": "incoming",
"created_at": 123,
"private": true,
"attachment": {},
"sender": {},
"conversation_id": 123
}
]
Path Parameters
The numeric ID of the account
The numeric ID of the conversation
Response
200
application/json
Success
Array of messages
curl --request GET \
--url https://app.chatwoot.com/api/v1/accounts/{account_id}/conversations/{conversation_id}/messages
[
{
"id": 123,
"content": "<string>",
"content_type": "text",
"content_attributes": {},
"message_type": "incoming",
"created_at": 123,
"private": true,
"attachment": {},
"sender": {},
"conversation_id": 123
}
]