Stop people mid-sequence
The off switch. Clears `next_run_at`, which is what actually takes the row out of the runner's sight, and records a manual exit rather than deleting the row — so the timeline still says why the outreach stopped. People who had already finished are left alone.
The off switch. Clears next_run_at, which is what actually takes the row out of the runner's sight, and records a manual exit rather than deleting the row — so the timeline still says why the outreach stopped. People who had already finished are left alone.
API key (sk_live_... prefix). Generate keys in the UI under Settings > API Keys, then send it as Authorization: Bearer sk_live_...
In: header
Path Parameters
uuidRequest Body
application/json
1 <= items <= 200Response Body
application/json
application/json
application/json
application/json
curl -X DELETE "https://loading/api/v1/org/sequences/497f6eca-6276-4993-bfeb-53cbbbba6f08/enrollments" \ -H "Content-Type: application/json" \ -d '{ "org_contact_ids": [ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ] }'{
"data": {
"stopped": -9007199254740991
}
}{
"error": "string",
"message": "string",
"statusCode": -9007199254740991
}{
"error": "string",
"message": "string",
"statusCode": -9007199254740991
}{
"error": "module_required",
"module": "string",
"message": "string",
"contact": "string"
}Replace a sequence's graph PUT
Saves the whole graph at once — a per-step write would leave arrows pointing at deleted steps if one request failed. A draft saves however half-drawn it is; the structural checks (loops, unreachable steps, two arrows on the same condition) only run when `status` moves to `active`, and a graph that fails them comes back 422 with the offending step ids so the canvas can highlight them.
Who is in this sequence GET
Everyone enrolled, newest first, with where each of them has got to and when they are next due. `status` distinguishes the three parked states — `active` waits for the send window, `waiting` sits on a wait step, `throttled` has hit the account's daily cap — from the three finished ones.