workflows
Get workflow with graph
Returns a workflow including its full node/edge graph and run stats.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
workflowIdstring
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.getWorkflow({ path: { workflowId: 'workflow_abc123', },});console.log(data);{
"success": true,
"workflow": {
"id": "string",
"name": "string",
"description": "string",
"platform": "string",
"accountId": "string",
"profileId": "string",
"status": "draft",
"entryNodeId": "string",
"nodes": [
{
"id": "string",
"type": "trigger",
"config": {},
"position": {
"x": 0,
"y": 0
}
}
],
"edges": [
{
"id": "string",
"source": "string",
"target": "string",
"sourceHandle": "string"
}
],
"totalStarted": 0,
"totalCompleted": 0,
"totalExited": 0,
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z"
}
}{
"error": "Unauthorized"
}{
"error": "Not found"
}Get a specific workflow version GET
Returns the full snapshot for a single historical version, including the graph.
Update workflow PATCH
Update name, description, the graph, or reassign to a different account. The graph can only be modified while the workflow is draft or paused. Account swaps re-validate the graph against the new platform (so e.g. moving from WhatsApp to Facebook surfaces a `start_call` node as an error instead of silently saving an unrunnable graph).