SendDataFormStepConfigDto
Configuration for SendDataForm workflow steps.
Used for both workflow template definition and task workflow step instance customization.
Properties
| Name | Type | Description |
|---|---|---|
| dataForm | CodeAndNameDto | |
| message | string | Optional message override. When null, the form's DefaultMessage is used. |
Optional message override. When null, the form's DefaultMessage is used. | ||
| autoAcceptData | boolean | Whether submitted data is automatically accepted without manual review. |
Whether submitted data is automatically accepted without manual review. | ||
| notifyAssigneeOnSubmission | boolean | Whether to send a platform notification to the step's assigned user when the client submits. |
Whether to send a platform notification to the step's assigned user when the client submits. | ||
| recipientContactTypes | array of enum | Client contact types to send the form notification email to. |
Client contact types to send the form notification email to. | ||
| additionalEmailAddresses | array of string | Static email addresses to send the form notification to. |
Static email addresses to send the form notification to. | ||
JSON Example
{
"dataForm": {
"code": "string",
"name": "string"
},
"message": "string",
"autoAcceptData": false,
"notifyAssigneeOnSubmission": false,
"recipientContactTypes": [
"Main"
]
}