OBJECT

EmailSequenceGlobalActionsSettings

link GraphQL Schema definition

  • type EmailSequenceGlobalActionsSettings {
  • # When true, the sequence reacts when a recipient replies to one of its emails.
  • onReply: Boolean!
  • # When true, a recipient who replies is removed from the sequence.
  • onReplyUnenroll: Boolean!
  • # When true, an email is sent in response to a reply.
  • onReplySendEmail: Boolean!
  • # Email sent in response to a reply.
  • onReplyEmail: EmailSequenceNodeEmail
  • # When true, a record is created in response to a reply.
  • onReplyCreateEntity: Boolean!
  • # Template for the record created in response to a reply.
  • onReplyEntity: ProcessEntityTemplate
  • # When true, the sequence reacts when a recipient unsubscribes, removing them from
  • # the sequence.
  • onUnsubscribe: Boolean!
  • # When true, a record is created when a recipient unsubscribes.
  • onUnsubscribeCreateEntity: Boolean!
  • # Template for the record created when a recipient unsubscribes.
  • onUnsubscribeEntity: ProcessEntityTemplate
  • # When true, the sequence evaluates the custom condition filter and acts when it
  • # matches.
  • onCondition: Boolean!
  • # Field-based filter that defines the custom condition checked against the
  • # enrolled record.
  • onConditionFilter: EmailSequenceFilter!
  • # When true, a record matching the custom condition is removed from the sequence.
  • onConditionUnenroll: Boolean!
  • # When true, an email is sent when the custom condition matches.
  • onConditionSendEmail: Boolean!
  • # Email sent when the custom condition matches.
  • onConditionEmail: EmailSequenceNodeEmail
  • # When true, a record is created when the custom condition matches.
  • onConditionCreateEntity: Boolean!
  • # Template for the record created when the custom condition matches.
  • onConditionEntity: ProcessEntityTemplate
  • # When true, the sequence reacts when one of its emails bounces.
  • onBounce: Boolean!
  • # When true, a recipient whose email bounces is removed from the sequence.
  • onBounceUnenroll: Boolean!
  • # When true, a recipient whose email bounces is also marked as unsubscribed.
  • onBounceUnsubscribe: Boolean!
  • }