Summary
Validate a workflow
Description
Validate a workflow, and return the resulting errors and warnings arrays.
Route
POST /automation-studio/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": [
{
"name": "dolore in nulla",
"provenance": "labore in exercitation laborum aliqua"
},
{
"name": "elit commodo nisi",
"provenance": "consequat culpa cupidatat consectetur adipisicing"
},
{
"name": "culpa",
"provenance": "et"
}
],
"nodeLocation": {
"x": -49079291.270313166,
"y": -68596815.9728144
}
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
{
"name": "eiusmod nisi ut tempor ea",
"provenance": "laborum eu ipsum"
},
{
"name": "aliqua incididunt culpa mollit",
"provenance": "in"
}
],
"nodeLocation": {
"x": -92935286.6543204,
"y": 39787384.902818024
}
},
"error_handler": {
"name": "childJob",
"summary": "in reprehenderit labore in in",
"description": "laborum cillum dolore cupidatat proident",
"app": "labore dolore",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/nrSfIng/liDblkdQw/~0/~0"
}
]
},
"groups": [
{
"name": "do pariatur",
"provenance": "dolor nulla sunt esse"
},
{
"name": "tempor in sed laborum",
"provenance": "aute"
},
{
"name": "amet non reprehenderit quis",
"provenance": "dolore irure enim nulla ut"
},
{
"name": "veniam dolore laboris dolor",
"provenance": "ea incididunt in"
}
],
"type": "operation",
"nodeLocation": {
"x": -75213119.96404396,
"y": 74413075.34041294
},
"deprecated": true,
"scheduled": false
}
},
"transitions": {},
"groups": [
{
"name": "nulla voluptate est nostrud commodo",
"provenance": "et dolor dolore"
},
{
"name": "ad dolore",
"provenance": "est esse nulla"
}
],
"_id": "45414899-2f60-a453-4bc0-e2d4d8519ebd",
"namespace": null,
"description": "deserunt nisi tempor dolore",
"preAutomationTime": 45089582.73154399,
"sla": 42164026.06936893,
"errorHandler": null,
"font_size": 12,
"created": "1990-12-23T06:48:45.016Z",
"created_by": null,
"createdVersion": "proident",
"last_updated": "2008-02-25T13:29:30.285Z",
"last_updated_by": null,
"lastUpdatedVersion": "officia nostrud",
"tags": [
{
"_id": "87dC8ac05DbBdD83ebeeEBe3",
"name": "sed ipsum Excepteur",
"description": "cillum sunt"
},
{
"_id": "d0c25Bb7dC4baE7ed8A7F46f",
"name": "proident",
"description": "in velit eiusmod"
},
{
"_id": "E4ACB7c8FC7Aad02376a0B9a",
"name": "irure",
"description": "laborum anim in"
},
{
"_id": "210a3aD0FCE8e83C6ccdD15C",
"name": "nostrud minim",
"description": "ea est dolore cupidatat nostrud"
},
{
"_id": "7EEC1FfaD3BBa7Bf1bc5F491",
"name": "dolore laboris cillum incididunt",
"description": "sunt laborum"
}
],
"canvasVersion": 3,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/vtw/2Eb6/FT15d,7Y/~0/HW1H.d/~0/i5w/rWuS"
}
],
"migrationVersion": 76369457
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"workflow": {
"title": "workflow",
"$ref": "workflowDocumentAll"
}
},
"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
{
"type": "object",
"title": "validationResult",
"properties": {
"errors": {
"type": "array",
"items": {
"type": "object"
}
},
"warnings": {
"type": "array",
"items": {
"type": "object"
}
}
}
}