INPUT_OBJECT

CreateTriggeredMessageMutationInput

The input object that defines the fields for the createTriggeredMessage mutation.

link GraphQL Schema definition

  • input CreateTriggeredMessageMutationInput {
  • # A descriptive name.
  • name: String!
  • # Whether or not this is enabled.
  • enabled: Boolean!
  • # Whether or not child accounts are allowed.
  • allow_children: Boolean!
  • # The trigger for this message.
  • trigger: MessageTrigger!
  • # The ID of an EmailMessage.
  • email_message_id: Int64Bit
  • # The ID of the SMS message.
  • sms_message_id: Int64Bit
  • # A list of MessageCategory IDs to apply to this contact. If this property is
  • # excluded, then the contact will inherit the default message categories, which is
  • # the typical behavior. You should only include this property if you want to
  • # override the default behavior.
  • message_category_ids: [Int64Bit]
  • # The ID of a signature.
  • signature_id: Int64Bit
  • # The ID of a `JobType`.
  • job_type_id: Int64Bit
  • # The count associated with this `TriggeredMessage`. This is defined by the
  • # trigger, and could be something like a number of days, months, gigabytes, etc.
  • count: Int
  • # A note about this entity.
  • note: NoteMutationInput
  • }

link Require by