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

Get sequence with steps

Returns a sequence with all its steps and enrollment stats.


GET
/v1/sequences/{sequenceId}

Authorization

bearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

sequenceId*string

Response Body

application/json

application/json

application/json

{  "success": true,  "sequence": {    "id": "string",    "name": "string",    "description": "string",    "platform": "string",    "accountId": "string",    "status": "draft",    "steps": [      {        "order": 0,        "delayMinutes": 0,        "message": {          "text": "string"        },        "template": {          "name": "string",          "language": "string",          "variableMapping": {}        }      }    ],    "exitOnReply": true,    "exitOnUnsubscribe": true,    "totalEnrolled": 0,    "totalCompleted": 0,    "totalExited": 0,    "createdAt": "2019-08-24T14:15:22Z",    "updatedAt": "2019-08-24T14:15:22Z"  }}
Was this page helpful?

Create sequence

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

Update sequence

Update a sequence's name, steps, or exit conditions. Steps can only be modified while the sequence is draft or paused.