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 | |
| timeEstimateMinutes | integer | |
| stepNumber | integer | The step number within the workflow group. |
The step number within the workflow group. | ||
| stepType | enum | Standard SendEmail DocumentRequest DocumentApproval ClientConfirmation SendDataForm SetServiceStage UpdateClientData SetPipelineStage |
Standard SendEmail DocumentRequest DocumentApproval ClientConfirmation SendDataForm SetServiceStage UpdateClientData SetPipelineStage | ||
| autoExecute | boolean | Whether this step executes automatically when its dependencies are met. |
Whether this step executes automatically when its dependencies are met. | ||
| assignmentType | enum | TaskOwner SpecificUser ClientManager ClientServiceManager ClientPartner ClientAssociate DoNotAssign |
TaskOwner SpecificUser ClientManager ClientServiceManager ClientPartner ClientAssociate DoNotAssign | ||
| assignedUser | CodeAndNameDto | |
| assignedTeam | 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 | |
| documentRequestStepConfiguration | DocumentRequestStepConfigDto | |
| documentApprovalStepConfiguration | DocumentApprovalStepConfigDto | |
| clientConfirmationStepConfiguration | ClientConfirmationStepConfigDto | |
| sendDataFormStepConfiguration | SendDataFormStepConfigDto | |
| setServiceStageStepConfiguration | SetServiceStageStepConfigDto | |
| setPipelineStageStepConfiguration | SetPipelineStageStepConfigDto | |
| updateClientDataStepConfiguration | UpdateClientDataStepConfigDto | |
| checklist | array of ChecklistItemDto | Checklist items for this workflow step template |
Checklist items for this workflow step template | ||
| condition | ConditionDto | |
| clientTypes | array of enum | The types of clients this step is applicable to. |
The types of clients this step is applicable to. | ||
JSON Example
{
"name": "string",
"description": "string",
"timeEstimateMinutes": 0,
"stepNumber": 0,
"stepType": "Standard"
}