跳到主要内容
Docs/Api Reference/Integrations

Integrations API

Out-of-band integrations — Zapier, HubSpot, Google Sheets bridge.

Endpoints

MethodPathDescription
GET`/api/v1/integrations`List enabled integrations
POST`/api/v1/integrations/hubspot/connect`Start HubSpot OAuth
POST`/api/v1/integrations/hubspot/disconnect`Disconnect
GET`/api/v1/integrations/sheets/:resource.csv`Google Sheets bridge (CSV via API key)

Zapier

Zapier zaps call /api/zapier/v1/... paths authenticated with an API key.

Every response uses the standard envelope:

{
  "success": true,
  "data": { /* resource or array */ },
  "meta": { "total": 100, "cursor": "...", "hasMore": true },
  "error": { "code": "ERROR_CODE", "message": "Human readable" }
}

error is omitted on success; meta is omitted when not paginating.

Rate Limits

Subject to the standard 200 req/min/tenant authenticated limit. See [Rate Limits](/docs/api-reference/rate-limits) for full details and the per-endpoint overrides.