Summary
Add Workflow
Description
Add a Workflow to the database
Route
POST /workflow_builder/workflows/save
Roles
admin
engineering
support
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
workflow |
object |
yes |
Workflow's data. |
Copied to Clipboard
{
"workflow": {
"name": "My Workflow",
"type": "automation",
"tasks": {
"workflow_start": {
"name": "workflow_start",
"summary": "workflow_start",
"groups": [],
"x": -2683447.0715190023,
"y": 96706850.24809086
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": -49149275.59183147,
"y": -44850024.4017096
},
"error_handler": {
"type": "operation",
"name": "childJob"
}
},
"transitions": {},
"groups": [
"50a68d91d6273f44941e8940",
"965d9b7549e4a6288a8e47a4",
"8c8bcdf491d98e1d6a512835",
"23eb317fb76446ca5c0cbd0c"
],
"_id": "c1c475a5-37ce-2e78-7214-cab3392642a1",
"description": null,
"errorHandler": {
"type": "sunt magna",
"name": "irure consectetur quis laborum"
},
"font_size": 12,
"created": "1962-01-03T09:03:29.949Z",
"created_by": "49ac4df8799bbfc7af8fb0cd",
"createdVersion": "sunt amet",
"last_updated": "2001-02-07T11:47:08.745Z",
"last_updated_by": "a813ae644df45e606ba6a0a6",
"lastUpdatedVersion": "nulla occaecat adipisicing do laborum",
"tags": [],
"canvasVersion": 2
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"workflow": {
"$ref": "workflowDocument"
}
},
"required": [
"workflow"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
data |
object |
The new Workflow with its data and ID. |
Copied to Clipboard
{
"name": "My Workflow",
"type": "automation",
"tasks": {
"workflow_start": {
"name": "workflow_start",
"summary": "workflow_start",
"groups": [],
"x": -42317536.765663855,
"y": -91824709.84004442
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 88565039.56551433,
"y": 70137500.60922658
},
"error_handler": {
"type": "operation",
"name": "childJob"
}
},
"transitions": {},
"groups": [
"ee7253d0cddf638885acf56b",
"67cdd4808241e69e11515a9f"
],
"_id": "b27b60c7-6ca9-d6ae-d0d0-555d7fb10809",
"description": null,
"errorHandler": null,
"font_size": 12,
"created": "1991-12-28T15:56:39.149Z",
"created_by": "e46ea83b9649daf9d2068593",
"createdVersion": "sit proident enim reprehenderit deserunt",
"last_updated": "1991-04-22T18:26:40.105Z",
"last_updated_by": "1a6d82149af8f4d39cfa235d",
"lastUpdatedVersion": "elit aliquip fugiat sit velit",
"tags": [],
"canvasVersion": 1
}