Summary
Validate a workflow
Description
Validate a workflow, and return the resulting errors and warnings arrays.
Route
POST /workflow_engine/workflows/validate
Roles
admin
engineering
support
apiread
apiwrite
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
workflow |
object |
yes |
The workflow to validate |
Copied to Clipboard
{
"workflow": {
"name": "My Workflow",
"type": "automation",
"tasks": {
"workflow_start": {
"name": "workflow_start",
"summary": "workflow_start",
"groups": [
"649d21de6230d6dea58614e6",
"4bbc6deeb260b916e025bc04",
"54d5e64fd6dcb7a8a12d26bf",
"fabf48c8b510c84e9dea43cf"
],
"x": 0.36142061281337046,
"y": 0.502092050209205
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"968238b032666195b0a7c2ec",
"54fac3dc27e347c59b84ba28"
],
"x": 0.36142061281337046,
"y": 0.502092050209205
},
"error_handler": {
"name": "childJob",
"summary": "cupidatat in ut consectetur Ut",
"description": "labore ea",
"app": "mollit sunt",
"variables": {
"error": ""
},
"groups": [
"a752e7248ac2437bdbe4375c",
"0a14daa0d9f3441b07a7aa10",
"b304cc9c1f1bd306e9ba7c3d",
"e1bb9b5fa31e3693878c2979",
"dac7a1df459c911c3b31d8a0"
],
"x": 0.36142061281337046,
"y": 0.502092050209205,
"type": "operation",
"deprecated": false,
"scheduled": false,
"retrySettings": {
"state": [
"failure",
"error",
"success"
],
"autoRetry": true,
"limit": 20,
"delay": 2000,
"count": 5
}
}
},
"transitions": {},
"groups": [
"0de952633eda5cbb21b40e46",
"882feeff30abe30e25aef209",
"9b8f99b0ab14fc6fdd2539da",
"d60d98db0d6fcee268f41c07"
],
"_id": "5cb7b531d06cceb89fd21b1c",
"description": null,
"preAutomationTime": 5000,
"font_size": 12,
"created": "1953-05-21T10:21:29.554Z",
"created_by": "0c5c958813ea672cd19d4d76",
"last_updated": "1967-07-18T02:09:59.275Z",
"last_updated_by": "40e8113a43c0663562de49d9",
"lastUpdatedVersion": "labore velit est",
"tags": [
"qui commodo eu consequat Duis",
"aliquip dolore dolor",
"sint elit",
"magna ipsum",
"esse sint"
],
"canvasVersion": 1,
"encodingVersion": 1
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"workflow": {
"$ref": "workflowDocument"
}
},
"required": [
"workflow"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
validationResult |
object |
Errors and warnings output from the validation process |
Copied to Clipboard
{
"errors": [],
"warnings": []
}
Copied to Clipboard
{
"title": "validationResult",
"type": "object",
"properties": {
"errors": {
"type": "array",
"items": {
"type": "object"
}
},
"warnings": {
"type": "array",
"items": {
"type": "object"
}
}
}
}