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

account_id
integer
required

The numeric ID of the account

conversation_id
integer
required

The numeric ID of the conversation

Response

200
application/json
Success

Array of messages