Skip to main content
GET
/
api
/
applications
/
{id}
/
conversations
Get conversations linked to application
curl --request GET \
  --url https://your-instance.example.com/api/applications/{id}/conversations \
  --header 'Authorization: Bearer <token>'
{
  "conversations": [
    {
      "_id": "64d2f9c5e8a1d4e001a0b1c2",
      "contactId": "64b2c3d4e5f60012345678aa",
      "channelType": "sms",
      "subject": "Tour follow-up",
      "lastMessageTime": "2026-04-22T10:14:00.000Z",
      "isResolved": false,
      "isAutopilot": true,
      "conversationState": "awaiting_reply"
    }
  ],
  "count": 1
}

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

Conversations returned

Note: this endpoint does NOT use the { success, data } envelope — it returns the conversations array and a count at the top level.

conversations
object[]
required
count
integer
required