API Docs / Schemas / ScheduledSendPayload

ScheduledSendPayload

The stored payload of a scheduled send — everything needed to replay the underlying send at
dispatch time. Exactly one of the per-type payload sections is populated, matching the row's
SendType. Raw uploaded attachments are offloaded to blob storage at schedule time and
referenced via BlobAttachments; practice document attachments stay as codes and are resolved
at dispatch.

Properties

Name Type Description
configCodestring

The mailbox (email config) to send from. Null on MailboxSend means automatic routing;
required for MailboxEmail and MailboxReply.

The mailbox (email config) to send from. Null on MailboxSend means automatic routing;
required for MailboxEmail and MailboxReply.

emailSendMailboxEmailRequest
replyReplyMailboxEmailRequest
replyToMessageIdstring

The email service message id being replied to, for MailboxReply sends

The email service message id being replied to, for MailboxReply sends

taskCodestring

Task code for WorkflowStep sends

Task code for WorkflowStep sends

groupNumberinteger

Workflow group number for WorkflowStep sends

Workflow group number for WorkflowStep sends

stepNumberinteger

Workflow step number for WorkflowStep sends

Workflow step number for WorkflowStep sends

clientCodestring

Client code for DocumentRequestOpen, DataFormSend and DocumentApproval sends

Client code for DocumentRequestOpen, DataFormSend and DocumentApproval sends

documentRequestCodestring

Code of the draft document request to open, for DocumentRequestOpen sends

Code of the draft document request to open, for DocumentRequestOpen sends

documentRequestOpenOpenDocumentRequestRequest
dataFormCodestring

Code of the data form to send, for DataFormSend and DataFormBulkSend sends

Code of the data form to send, for DataFormSend and DataFormBulkSend sends

dataFormSendSendDataFormRequest
dataFormBulkSendBulkSendDataFormRequest
documentApprovalRequestClientApprovalForDocumentsRequest
emailBroadcastCodestring

Code of the broadcast to send, for EmailBroadcast sends

Code of the broadcast to send, for EmailBroadcast sends

blobAttachmentsarray of ScheduledSendBlobAttachment

Raw uploaded attachments offloaded to blob storage at schedule time,
rehydrated into the send request at dispatch

Raw uploaded attachments offloaded to blob storage at schedule time,
rehydrated into the send request at dispatch

JSON Example

{
  "configCode": "string",
  "email": {
    "subject": "string",
    "htmlBody": "string",
    "plainTextBody": "string",
    "to": [
      "..."
    ],
    "cc": [
      "..."
    ]
  },
  "reply": {
    "htmlBody": "string",
    "plainTextBody": "string",
    "replyAll": false,
    "toRecipients": [
      "..."
    ],
    "ccRecipients": [
      "..."
    ]
  },
  "replyToMessageId": "00000000-0000-0000-0000-000000000000",
  "taskCode": "string"
}

Contained in Schemas