ClientConfirmationStepConfigDto
Configuration for ClientConfirmation workflow steps.
Email template is configured in ClientPortalSettings, not per-step.
Properties
| Name | Type | Description |
|---|---|---|
| messageHtml* | string | HTML message displayed on the public confirmation page. |
HTML message displayed on the public confirmation page. | ||
| buttonText* | string | Text for the confirmation button on the public page. |
Text for the confirmation button on the public page. | ||
| thankYouMessageHtml* | string | HTML message displayed after the client confirms. |
HTML message displayed after the client confirms. | ||
| recipientContactTypes | array of enum | Client contact types to send the confirmation email to. |
Client contact types to send the confirmation email to. | ||
| additionalEmailAddresses | array of string | Static email addresses to send the confirmation email to. |
Static email addresses to send the confirmation email to. | ||
| notifyAssigneeOnConfirmation | boolean | Whether to send a notification to the step's assigned user when the client confirms. |
Whether to send a notification to the step's assigned user when the client confirms. | ||
JSON Example
{
"messageHtml": "string",
"buttonText": "string",
"thankYouMessageHtml": "string",
"recipientContactTypes": [
"Main"
],
"additionalEmailAddresses": [
"string"
]
}
Contained in Schemas
- UpdateWorkflowStepRequest Request DTO for updating workflow step properties. Supports updating status, assignment, time tracki...
- WorkflowStepDto DTO for workflow steps within a workflow group. Used for both create/update requests and GET respons...
- WorkflowStepProgressDto Represents the progress of a single workflow step within a TaskItem. Contains both the step template...