Sequences
List enrollments for a sequence
Returns enrolled contacts with their progress, status, and next scheduled step.
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
Default
50skip?integer
Default
0Response 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?