INPUT_OBJECT

WebhookEventSubscriptionInput

Description

Event subscription settings.

link GraphQL Schema definition

  • input WebhookEventSubscriptionInput {
  • # Whether the webhook is subscribed to all events.
  • isSubscribedToAllEvents: Boolean
  • # Whether the webhook is subscribed to all object types.
  • isSubscribedToAllObjectTypes: Boolean
  • # The event types to subscribe to.
  • eventTypes: [EventType!]!
  • # The object types to subscribe to.
  • objectTypes: [EventObjectType!]!
  • # The severity levels to subscribe to.
  • severities: [EventSeverity!]!
  • # The template information.
  • templateInfo: WebhookTemplateInfoInput!
  • }