Skip to main content
GET
/
inbox
/
conversations
List workspace conversations
curl --request GET \
  --url https://http.us.breakcold.com/api/v1/inbox/conversations \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "workspaceId": "<string>",
      "lastMessageAtMs": 123,
      "isClosed": true,
      "subject": "<string>",
      "lifecycle": "<string>",
      "mailbox": "<string>",
      "lastMessageSnippet": "<string>",
      "hasAttachments": true,
      "hasLinkedRecords": true,
      "attendees": [
        {
          "id": "<string>",
          "displayName": "<string>",
          "handle": "<string>",
          "email": "<string>",
          "isSender": true,
          "isWorkspaceMember": true
        }
      ],
      "assignees": [
        {
          "id": "<string>",
          "name": "<string>",
          "email": "<string>"
        }
      ]
    }
  ],
  "pagination": {
    "cursor": "<string>",
    "hasMore": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.breakcold.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Breakcold public API key, for example Bearer bc_live_....

Headers

X-Breakcold-Organization-Id
string

Breakcold organization ID. API keys already carry their organization, so most API-key requests do not need this header. Use it only when Breakcold asks you to choose an organization for a signed-in user token.

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 100
cursor
string
workspaceId
string
required
Minimum string length: 6
viewId
string
Minimum string length: 6
hasLinkedRecords
boolean

Response

Success

data
object[]
required
pagination
object
required