OBJECT
Webhook
Description
A webhook configuration in the account.
link GraphQL Schema definition
- type Webhook {
- # The webhook's unique id.
- Int! :
- # The webhook's name.
- String! :
- # The user who created the webhook.
- String! :
- # A description of this webhook.
- String :
- # The timestamp that this webhook was created at.
- DateTime :
- # The timestamp that this webhook was updated at.
- DateTime :
- # The Webhook server certificate that Rubrik uses to establish a TLS connection
- # with the endpoint.
- String :
- # The authentication type that the endpoint uses.
- AuthenticationType! :
- # The ID of the service account attached to the webhook.
- String :
- # The URL endpoint that will receive the webhook.
- URL! :
- # The application that will receive the webhook.
- ProviderType! :
- # Specifies whether the webhook is enabled or not.
- WebhookStatus! :
- # The event and audit severities that the webhook is subscribed to.
- SubscriptionSeverity! :
- # The event and audit types that the webhook is subscribed to.
- SubscriptionType! :
- # The information describing the webhook's most recent error.
- ErrorInfo :
- }
link Require by
- CreateWebhookReplyThe webhook that was created.
- UpdateWebhookReplyThe webhook that was updated.
- WebhookConnectionPaginated list of Webhook objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- WebhookEdgeWrapper around the Webhook object. This wrapper is used for pagination.