List conversations

Returns the organization's conversations, most recent message first.

GET
/v1/conversations

Returns the organization's conversations, most recent message first.

Authorization

AuthorizationBearer <token>

The organization API key, sent as Authorization: Bearer <key>.

In: header

Query Parameters

limit?integer

How many items to return. Maximum 100.

Range1 <= value <= 100
Default25
offset?|

How many items to skip from the beginning.

Range0 <= value
Default0
activityState?string
Length1 <= length
channel?string
Length1 <= length
customerId?string
Length1 <= length
query?string

Matches against the contact name and the channel identifier.

Length1 <= length

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/conversations"
{  "data": [    {      "activityState": "string",      "channel": "string",      "contact": "string",      "contactName": "string",      "controlledBy": "string",      "createdAt": "2019-08-24T14:15:22Z",      "customerId": "string",      "customerName": "string",      "id": "string",      "language": "string",      "lastMessageAt": "2019-08-24T14:15:22Z"    }  ],  "pagination": {    "limit": 0,    "offset": 0,    "total": 0  }}