sendInkOutboundMessage
Send an Ink outbound message.
Arguments
Input for sending an Ink outbound message.
Possible Errors
Allowed Viewers
Required Permissions
Can send ink outbound messagesQuery Complexity
5Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation SendInkOutboundMessage($input: SendInkOutboundMessageInput) {
sendInkOutboundMessage(input: $input) {
message {
... on InkEmail {
...InkEmailFragment
}
... on InkGenericMessage {
...InkGenericMessageFragment
}
... on InkLine {
...InkLineFragment
}
... on InkLiveChatMessage {
...InkLiveChatMessageFragment
}
... on InkPost {
...InkPostFragment
}
... on InkSMS {
...InkSMSFragment
}
... on InkTwilioWhatsApp {
...InkTwilioWhatsAppFragment
}
... on InkWhatsApp {
...InkWhatsAppFragment
}
}
}
}
Variables
{
"input": SendInkOutboundMessageInput
}
Response
{
"data": {
"sendInkOutboundMessage": {
"message": InkEmail
}
}
}