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 enrollments for a sequence

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


GET
/v1/sequences/{sequenceId}/enrollments

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

Query Parameters

status?string

Value in

  • "active"
  • "completed"
  • "exited"
  • "paused"
limit?integer
Default50
skip?integer
Default0

Response Body

application/json

application/json

application/json

{  "success": true,  "enrollments": [    {      "id": "string",      "contactId": "string",      "channelId": "string",      "platformIdentifier": "string",      "contactName": "string",      "currentStepIndex": 0,      "status": "active",      "exitReason": "string",      "nextStepAt": "2019-08-24T14:15:22Z",      "stepsSent": 0,      "lastStepSentAt": "2019-08-24T14:15:22Z",      "createdAt": "2019-08-24T14:15:22Z"    }  ],  "pagination": {    "total": 0,    "limit": 0,    "skip": 0,    "hasMore": true  }}
Was this page helpful?

Clear custom field value

Remove a custom field value from a contact. The field definition is not affected.

List sequences

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