sequences
Unenroll contact
Remove a contact from a sequence. No further messages will be sent to this contact.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
sequenceIdstring
contactIdstring
Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.sequences.unenrollContact({ path: { sequenceId: 'sequence_abc123', contactId: 'contact_abc123', },});console.log(data);Empty
{
"error": "Unauthorized"
}{
"error": "Not found"
}Pause sequence POST
Pause an active sequence. Enrolled contacts stop receiving messages until the sequence is reactivated.
Get an execution's timeline GET
Returns the per-step run-log for a single workflow execution: trigger fired, each node visited, edge handles taken, errors, and durations. Backed by Tinybird (90-day retention). Used by the Runs UI drawer to render the timeline.