PendingWorkflowStepDto
Lightweight projection of a manual-mode outbound workflow step that is ready to send.
These are steps where dependencies are met and a user needs to review and trigger the send.
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The workflow step ID |
The workflow step ID | ||
| stepName | string | The name of the workflow step |
The name of the workflow step | ||
| stepType | enum | Standard SendEmail DocumentRequest DocumentApproval ClientConfirmation SendDataForm SetServiceStage UpdateClientData SetPipelineStage |
Standard SendEmail DocumentRequest DocumentApproval ClientConfirmation SendDataForm SetServiceStage UpdateClientData SetPipelineStage | ||
| status | enum | NotStarted InProgress Blocked Completed Skipped |
NotStarted InProgress Blocked Completed Skipped | ||
| task | CodeAndNameDto | |
| client | CodeAndNameDto | |
| taskCategory | CodeAndNameDto | |
| assignedUser | CodeAndNameDto | |
| assignedTeam | CodeAndNameDto | |
| groupName | string | The workflow group name |
The workflow group name | ||
| groupNumber | integer | The group number within the workflow |
The group number within the workflow | ||
| stepNumber | integer | The step number within the group |
The step number within the group | ||
| deadline | string | The group's calculated deadline (from the task's due date + group interval) |
The group's calculated deadline (from the task's due date + group interval) | ||
| createdDate | string | When the step was created |
When the step was created | ||
JSON Example
{
"id": 0,
"stepName": "string",
"stepType": "Standard",
"status": "NotStarted",
"task": {
"code": "string",
"name": "string"
}
}