OBJECT

EventSubscription

Description

The event subscription information.

link GraphQL Schema definition

  • type EventSubscription {
  • # True if subscribed to all events.
  • isSubscribedToAllEvents: Boolean!
  • # True if subscribed to all object types.
  • isSubscribedToAllObjectTypes: Boolean!
  • # Subscription message template.
  • templateInfo: TemplateInfo
  • # The event types to which the webhook is subscribed.
  • eventTypes: [EventType!]!
  • # The object types to which the webhook is subscribed.
  • objectTypes: [EventObjectType!]!
  • # The event severities to which the webhook is subscribed.
  • severities: [EventSeverity!]!
  • }