Summary
Import Workflow
Description
Import a single Workflow
Route
POST /workflow_engine/workflows/import
Roles
admin
apiwrite
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| workflow |
object |
yes |
A workflow payload object |
| options |
object |
yes |
Import options: adapterMap |
Copied to Clipboard
{
"workflow": null,
"options": null
}
Copied to Clipboard
{
"type": "object",
"properties": {
"workflow": {
"description": "A workflow payload object",
"type": "object",
"properties": {},
"required": [
"workflow"
],
"additionalProperties": false
},
"options": {
"description": "Import options: adapterMap",
"type": "object",
"properties": {},
"required": [
"options"
],
"additionalProperties": false
}
},
"required": [
"workflow",
"options"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| result |
boolean |
Import status |
Copied to Clipboard
false
Copied to Clipboard
{
"description": "Import status",
"type": "boolean"
}