contactRecipientInput
Contact a Recipient by a chosen communication channel.
Fields
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
recipientId | ID! | Yes | — | Recipient to contact |
channel | ChannelType | No | EMAIL | Communication channel |
message | String | No | — | Message to send (max 5000 chars) |
force | Boolean | No | false | Override send sequencing |
Example
mutation ContactRecipient {
contactRecipient(input: {
recipientId: "cmVjLTEyMzQ="
channel: EMAIL
message: "Please sign at your earliest convenience."
})
}