INPUT_OBJECT

CreateTriggeredEmailMutationInput

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

link GraphQL Schema definition

  • input CreateTriggeredEmailMutationInput {
  • # A descriptive name.
  • name: String!
  • # The trigger for this email.
  • trigger: EmailTrigger!
  • # Whether or not this is enabled.
  • enabled: Boolean!
  • # The ID of an EmailMessage.
  • email_message_id: Int64Bit!
  • # A list of EmailCategory IDs to apply to this triggered email. If this triggered
  • # email sends to account contacts, then the contact must have at least one of the
  • # email categories defined here in order to receive this email.
  • email_category_ids: [Int64Bit]
  • # The count associated with this `TriggeredEmail`. This is defined by the trigger,
  • # and could be something like a number of days, months, gigabytes, etc.
  • count: Int
  • # The `Job` ID for this `TriggeredEmail`. This will only be saved for triggered
  • # emails using the trigger `JOB_SCHEDULED`.
  • job_type_id: Int64Bit
  • # Whether or not child accounts are allowed.
  • allow_children: Boolean
  • # A note about this entity.
  • note: NoteMutationInput
  • }

link Require by