INPUT_OBJECT

WebhookAuditSubscriptionInput

Description

Audit subscription settings.

link GraphQL Schema definition

  • input WebhookAuditSubscriptionInput {
  • # Whether the webhook is subscribed to all audits.
  • isSubscribedToAllAudits: Boolean
  • # Whether the webhook is subscribed to all object types.
  • isSubscribedToAllObjectTypes: Boolean
  • # The audit types to subscribe to.
  • auditTypes: [AuditType!]!
  • # The object types to subscribe to.
  • objectTypes: [AuditObjectType!]!
  • # The severity levels to subscribe to.
  • severities: [AuditSeverity!]!
  • # The template information.
  • templateInfo: WebhookTemplateInfoInput!
  • }