API Docs / Schemas / BulkSendDataFormRequest

BulkSendDataFormRequest

DTO for sending a form to multiple clients

Properties

Name Type Description
clientCodesarray of string

The codes of the clients to send the form to

The codes of the clients to send the form to

notifyUserCodestring

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.

autoAcceptDataboolean

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

messagestring

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

recipientsEmailRecipientConfig

JSON Example

{
  "clientCodes": [
    "string"
  ],
  "notifyUserCode": "string",
  "autoAcceptData": false,
  "message": "string",
  "recipients": {
    "contactTypes": [
      "..."
    ],
    "userTypes": [
      "..."
    ],
    "emailAddresses": [
      "..."
    ]
  }
}

Used By Operations