workflows
Restore a workflow version
Replace the current graph with the named version's snapshot. Before the swap, the current graph is itself snapshotted as a new version, so a restore is reversible. The workflow must be in draft or paused status (same gate as a normal graph edit). The returned workflow carries restoredFromVersion so the UI can surface which version was rolled back to.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
workflowIdstring
versioninteger
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.workflows.restoreWorkflowVersion({ path: { workflowId: 'workflow_abc123', version: 0, },});console.log(data);{
"success": true,
"workflow": {
"id": "string",
"name": "string",
"description": "string",
"status": "string",
"entryNodeId": "string",
"nodeCount": 0,
"updatedAt": "2019-08-24T14:15:22Z"
},
"restoredFromVersion": 0
}Empty
{
"error": "Unauthorized"
}{
"error": "Not found"
}