EmailStepConfigDto
Configuration for SendEmail workflow steps.
Used for both workflow template definition and task workflow step instance customization.
All properties must be provided when creating or updating.
Properties
| Name | Type | Description |
|---|---|---|
| executionMode* | enum | Auto Manual |
Auto Manual | ||
| contentBlockCode* | string | Content block code for the email template. |
Content block code for the email template. | ||
| recipientContactTypes | array of enum | Client contact types for To recipients. |
Client contact types for To recipients. | ||
| recipientUserTypes | array of enum | User types for To recipients. |
User types for To recipients. | ||
| additionalEmailAddresses | array of string | Static email addresses for To recipients. |
Static email addresses for To recipients. | ||
| ccContactTypes | array of enum | Client contact types for CC recipients. |
Client contact types for CC recipients. | ||
| ccUserTypes | array of enum | User types for CC recipients. |
User types for CC recipients. | ||
| ccEmailAddresses | array of string | Static email addresses for CC recipients. |
Static email addresses for CC recipients. | ||
JSON Example
{
"executionMode": "Auto",
"contentBlockCode": "string",
"recipientContactTypes": [
"Main"
],
"recipientUserTypes": [
"TaskOwner"
],
"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...