Zernio
Zernio
API Reference

Sequences

List enrollments for a sequenceGETList sequencesGETCreate sequencePOSTGet sequence with stepsGETUpdate sequencePATCHDelete sequenceDELETEActivate sequencePOSTEnroll contacts in a sequencePOSTPause sequencePOSTUnenroll contactDELETE
Dashboard
llms.txtOpenAPI
OverviewPlatformsAPI ReferenceResources
Sequences

List sequences

Returns sequences with enrollment stats. Filter by status, platform, or profile.


GET
/v1/sequences

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication: send your Zernio API key in the Authorization header, prefixed with Bearer.

In: header

Query Parameters

profileId?string

Filter by profile. Omit to list across all profiles

status?string

Value in

  • "draft"
  • "active"
  • "paused"
limit?integer
Default50
skip?integer
Default0

Response Body

application/json

application/json

{  "success": true,  "sequences": [    {      "id": "string",      "name": "string",      "description": "string",      "platform": "string",      "accountId": "string",      "accountName": "string",      "messagePreview": "string",      "status": "draft",      "stepsCount": 0,      "exitOnReply": true,      "exitOnUnsubscribe": true,      "totalEnrolled": 0,      "totalCompleted": 0,      "totalExited": 0,      "createdAt": "2019-08-24T14:15:22Z"    }  ],  "pagination": {    "total": 0,    "limit": 0,    "skip": 0,    "hasMore": true  }}
Was this page helpful?

List enrollments for a sequence

Returns enrolled contacts with their progress, status, and next scheduled step.

Create sequence

Create a multi-step messaging sequence. Each step has a delay and a message or WhatsApp template.