INPUT_OBJECT
CreateInboundMailboxMutationInput
The input object that defines the fields for the createInboundMailbox mutation.
link GraphQL Schema definition
- input CreateInboundMailboxMutationInput {
- # A descriptive name.
- : String!
- # Whether or not this is enabled.
- : Boolean
- # The name to send from when using this email message. If `null`, then the system
- # default will be used.
- : String!
- # The mailbox email is sent from.
- : String!
- # The ID of an `EmailDomain`.
- : Int64Bit!
- # The priority of a `Ticket`.
- : TicketPriority!
- # The ID of a `TicketGroup`.
- : Int64Bit!
- # Whether or not an auto reply should be sent.
- : Boolean!
- # The auto reply to send.
- : Text
- # Whether or not to append a signature.
- : Boolean!
- # The signature to append. You can include `[PUBLIC_NAME]` as a variable to insert
- # the user's public name when the signature is appended.
- : Text
- # Whether or not to enable Slack integration.
- : Boolean!
- # Whether the email body should be posted to Slack, or just the email subject.
- : Boolean
- # The URL of a Slack webhook. You can generate one at
- # https://my.slack.com/services/new/incoming-webhook.
- : URL
- # A note about this entity.
- : NoteMutationInput
- }