跳到主要内容
Docs/Api Reference/Stage Triggers

Stage Triggers API

Pipeline-stage transitions can fire automation triggers — send a Sequence step, post to Slack, call a webhook, etc.

Endpoints

MethodPathDescription
GET`/api/v1/stage-triggers`List
POST`/api/v1/stage-triggers`Create
GET`/api/v1/stage-triggers/:id`Get
PATCH`/api/v1/stage-triggers/:id`Update
DELETE`/api/v1/stage-triggers/:id`Delete
GET`/api/v1/stage-triggers/:id/executions`Execution history

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.