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 UIpositionx: 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_groupentityuserFields: array of related fields with the nativeuserand/oruser_groupentity
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"]
}
}
]
}