OBJECT
SubscriptionType
Description
The event and audit types that the webhook is subscribed to.
link GraphQL Schema definition
- type SubscriptionType {
- # The audit types that the webhook is subscribed to.
- : [UserAuditTypeEnum!]!
- # The event types that the webhook is subscribed to.
- : [ActivityTypeEnum!]!
- # Specifies whether the webhook is subscribed to all audits.
- : Boolean!
- # Specifies whether the webhook is subscribed to all events.
- : Boolean!
- # Specifies whether the webhook is subscribed to all object types.
- : Boolean!
- # The object types to which the webhook is subscribed.
- : [EventObjectType!]!
- }