WorkflowStepDto
DTO for workflow steps within a workflow group.
Used for both create/update requests and GET responses for workflow templates.
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| description | string | |
| timeEstimate | number | |
| stepNumber | integer | The step number within the workflow group. |
The step number within the workflow group. | ||
| stepType | enum | Standard SendEmail |
Standard SendEmail | ||
| assignmentType | enum | TaskOwner SpecificUser ClientManager ClientServiceManager ClientPartner ClientAssociate |
TaskOwner SpecificUser ClientManager ClientServiceManager ClientPartner ClientAssociate | ||
| assignedUser | CodeAndNameDto | |
| billableService | CodeAndNameDto | |
| dependsOnStepNumbers | array of integer | The step numbers that this step depends on (must be completed first). |
The step numbers that this step depends on (must be completed first). | ||
| emailStepConfiguration | EmailStepConfigDto | |
JSON Example
{
"name": "string",
"description": "string",
"timeEstimate": 0,
"stepNumber": 0,
"stepType": "Standard"
}