Contacts

List conversations for a contact

List conversations for a contact.

GET
/contacts/{contact_id}/conversations

List conversations for a contact.

Authorization

bearerToken
AuthorizationBearer <token>

Personal access tokens created from the ThriveDesk UI. Create one under Integrations -> API Keys.

In: header

Path Parameters

contact_id*string

Query Parameters

inbox_id?string

Only conversations in this inbox.

except?string

Conversation ID to exclude.

limit?integer

Maximum number of conversations to return.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/contacts/string/conversations"
{  "conversations": [    {      "id": "string",      "subject": "string",      "status": "string",      "type": "string",      "excerpt": "string",      "inbox_id": "string",      "priority": "string",      "tags": [        {          "id": "string",          "name": "string",          "color": "string"        }      ],      "last_message_by": "string",      "created_at": "2019-08-24T14:15:22Z"    }  ],  "total": 0}