v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Conversations

Query conversations

Query conversations for the authenticated user

post/v6/conversations/query

Request body

cursorstring nullable

Cursor from the previous paginated response

limitinteger

Page size, i.e. number of items to return per page

Example request

{
  "filter": {
    "company": {
      "in": [
        "co_123",
        "co_456"
      ]
    }
  }
}

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": [
    {
      "id": "con_12345",
      "company": {
        "id": "co_123456",
        "name": "ACME Corp"
      },
      "subject": "Transaction review needed",
      "author": {
        "email": "user@example.com"
      },
      "latestMessage": {
        "id": "msg_67890",
        "author": {
          "email": "user@example.com"
        }
      },
      "status": "ACTIVE",
      "readStatus": "UNREAD",
      "resolutionStatus": "OPEN"
    }
  ]
}