Skip to main content
GET
/
api
/
conversation
/
{id}
Get conversation by ID
curl --request GET \
  --url https://your-instance.example.com/api/conversation/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "_id": "65d3e0f0a0b0c0d0e0f0a0b0",
    "contactId": "65c2d0e0f0a0b0c0d0e0f0a0",
    "channelType": "sms",
    "isAutopilot": true,
    "isResolved": false,
    "assignees": [
      "65b1f0a2c3d4e5f6a7b8c9d0"
    ],
    "lastMessageTime": "2026-05-18T13:45:00.000Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

Conversation returned

data
object