BulkSendDataFormRequest
DTO for sending a form to multiple clients
Properties
| Name | Type | Description |
|---|---|---|
| clientCodes | array of string | The codes of the clients to send the form to |
The codes of the clients to send the form to | ||
| notifyUserCode | string | The user to notify when clients submit their responses. If not specified, no notification is sent. |
The user to notify when clients submit their responses. If not specified, no notification is sent. | ||
| autoAcceptData | boolean | When true, submitted data will be automatically accepted and copied to the client record without manual review |
When true, submitted data will be automatically accepted and copied to the client record without manual review | ||
| message | string | A message explaining what the client needs to do, included in the notification email |
A message explaining what the client needs to do, included in the notification email | ||
| recipients | EmailRecipientConfig | |
JSON Example
{
"clientCodes": [
"string"
],
"notifyUserCode": "string",
"autoAcceptData": false,
"message": "string",
"recipients": {
"contactTypes": [
"..."
],
"userTypes": [
"..."
],
"emailAddresses": [
"..."
]
}
}