UpdateWorkflowRequest
Request to update an existing workflow
Properties
| Name | Type | Description |
|---|---|---|
| name* | string | The name of the workflow |
The name of the workflow | ||
| description | string | Optional description explaining the workflow's purpose |
Optional description explaining the workflow's purpose | ||
| groups* | array of WorkflowGroupDto | The workflow groups containing steps |
The workflow groups containing steps | ||
JSON Example
{
"name": "string",
"description": "string",
"groups": [
{
"name": "...",
"description": "...",
"deadlineIntervalValue": "...",
"deadlineIntervalUnit": "...",
"groupNumber": "..."
}
]
}