sequences
Activate sequence
Start a draft or paused sequence. The sequence must have at least one step.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
sequenceIdstring
Response Body
application/json
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.sequences.activateSequence({ path: { sequenceId: 'sequence_abc123', },});console.log(data);{
"success": true,
"sequence": {
"id": "string",
"status": "string"
}
}Empty
{
"error": "Unauthorized"
}{
"error": "Not found"
}