Skip to main content

TemplateRenderInput

Input for templateRender mutation.

input TemplateRenderInput {
jobId: String!
selections: [TemplateRenderSelection!]!
action: DocumentAction!
deliveryMethod: DeliveryMethod
to: [EmailRecipient!]
cc: [EmailRecipient!]
bcc: [EmailRecipient!]
subject: String
content: String
}

Fields

TemplateRenderInput.jobId ● String! non-null scalar

Job id returned by templatePrepare.

TemplateRenderInput.selections ● [TemplateRenderSelection!]! non-null input

Selections per manual node.

TemplateRenderInput.action ● DocumentAction! non-null enum

Action to perform with the rendered PDF.

TemplateRenderInput.deliveryMethod ● DeliveryMethod enum

Delivery method (required when action is SEND).

TemplateRenderInput.to ● [EmailRecipient!] list input

Primary recipients (required when action is SEND).

TemplateRenderInput.cc ● [EmailRecipient!] list input

CC recipients (optional when action is SEND).

TemplateRenderInput.bcc ● [EmailRecipient!] list input

BCC recipients (optional when action is SEND).

TemplateRenderInput.subject ● String scalar

Subject (required when action is SEND).

TemplateRenderInput.content ● String scalar

Body content (required when action is SEND).

Member Of

templateRender mutation