Workflow Steps
Entity workflows can have multiple steps.
key
: string used to define the step keyname
: string used to define the step label in the UIposition
x
: x-axisy
: y-axis
ownershipDetails
: specify who is the owner of the step. It will be used to send notificationsuserGroups
: array of codes from the nativeuser_group
entityuserFields
: array of related fields with the nativeuser
and/oruser_group
entity
Example
{
"steps": [
{
"key": "initial",
"name": "Initial",
"order": 1,
"position": {
"x": 50,
"y": 0
},
"ownershipDetails": {
"userGroups": [],
"userFields": ["user_id", "user_group_id"]
}
},
{
"key": "final",
"name": "final",
"order": 2,
"position": {
"x": 100,
"y": 0
},
"ownershipDetails": {
"userGroups": [],
"userFields": ["user_id", "user_group_id"]
}
}
]
}