EaserixDocs
DevelopersAPI referenceCronCrunchClients

List clients

Clients the caller can read: their own (active-org-scoped; legacy rows without org_id stay visible) plus any shared with the organization by a teammate. Ordered by name ascending.

View as Markdown
GET
/v1/clients
AuthorizationBearer <token>

In: header

Query Parameters

scope?string

all (default) — everything readable · mine — only the caller's own · shared — only teammates' org-shared clients (excludes own).

Value in

  • "all"
  • "mine"
  • "shared"
crm_company_id?string

Only clients linked to this CRM company (the CRM company page reads the linkage this way).

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/clients"
{  "clients": [    {      "id": "string",      "name": "string",      "color": "string",      "created": "2019-08-24T14:15:22Z",      "visibility": "string",      "ownerId": "string",      "crmCompanyId": "string"    }  ]}