v3

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-273246117.6 KB
CRM

List accounts

Returns accounts using cursor pagination with optional search and field projection. Custom attribute names and value types are returned in data.custom_field_definitions; keys in that map match keys under each account's custom_fields object.

get/v1/accounts

Query parameters

qstring

Free-text search query.

cursorstring

Opaque pagination cursor returned by a previous page.

limitinteger

Maximum number of records.

string
OR
string[]

Optional fields to include. Accepts a comma-separated string or repeated array values.

Response

Accounts were returned.

successboolean
messagestring

Example response

{
  "success": true,
  "data": {
    "custom_field_definitions": {
      "last_action_date": {
        "current_name": "Last Action Date",
        "property_name": "custom__last_action_date",
        "attribute_type": "date",
        "metadata": null
      },
      "kola": {
        "current_name": "Kola",
        "property_name": "custom__kola",
        "attribute_type": "multi_select",
        "metadata": {
          "options": [
            {
              "label": "E",
              "value": "e-532837",
              "color": "indigo"
            }
          ]
        }
      }
    }
  }
}
All 32 operations