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": [
"898aa6ae73eacce0b71653af",
"691d2b9905d676f53873af07",
"ee9d8b06a3f1977e2aac127a",
"6f6ca5c49f164046a95eda9a"
],
"x": -24062574.943295896,
"y": 56630151.45584062
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"4496c916dae4e716bf4706e8"
],
"x": -95636427.84901139,
"y": 14395620.687077895
},
"error_handler": {
"name": "childJob",
"summary": "cillum ea fugiat sint magna",
"description": "minim",
"app": "mollit dolore in sit nulla",
"variables": {
"error": ""
},
"groups": [
"4367baee352537687651f04f",
"a9e6b84e322a5bfabac1664d"
],
"type": "operation",
"deprecated": false,
"scheduled": false,
"retrySettings": {
"state": [
"failure",
"success"
],
"autoRetry": true,
"limit": 20,
"delay": 2000,
"count": 5
}
}
},
"transitions": {},
"groups": [
"ec9c7047101bb49f66ba80b3",
"06d0e80bc6e84c4c0ba0fa0d"
],
"_id": "4321abcdef694aa79dae47ad",
"description": null,
"preAutomationTime": 250000,
"font_size": 12,
"created": "1989-01-22T17:18:33.968Z",
"created_by": "f77fb00c8440b749bfcb2b91",
"last_updated": "1961-04-16T11:47:29.57Z",
"last_updated_by": "7ed09e4fc77f0f19ebaa03d6",
"lastUpdatedVersion": "in",
"tags": [
"nostrud commodo",
"culpa velit",
"esse proident",
"in Excepteur",
"amet eiusmod"
],
"canvasVersion": 1,
"encodingVersion": 1
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"workflow": {
"title": "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
{
"type": "object",
"title": "validationResult",
"properties": {
"errors": {
"type": "array",
"items": {
"type": "object"
}
},
"warnings": {
"type": "array",
"items": {
"type": "object"
}
}
}
}