API Docs / Schemas / SendDataFormRequest

SendDataFormRequest

DTO for sending a form to a single client

Properties

Name Type Description
clientCodestring

The code of the client to send the form to

The code of the client to send the form to

notifyUserCodestring

The user to notify when the client submits their response. If not specified, no notification is sent.

The user to notify when the client submits their response. 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

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

Used By Operations