INPUT_OBJECT

CreateWebhookInput

Description

Webhook configuration to add to an account.

link GraphQL Schema definition

  • input CreateWebhookInput {
  • # A description of the webhook to be created.
  • description: String
  • # The Webhook server certificate that Rubrik uses to establish a TLS connection
  • # with the endpoint.
  • serverCertificate: String
  • # The ID of the service account attached to the webhook.
  • serviceAccountId: String
  • # The name of the webhook to be created.
  • name: String!
  • # The URL endpoint to the receiving application.
  • url: URL!
  • # A list of event and audit types to which the webhook is subscribed.
  • subscriptionType: SubscriptionTypeInput!
  • # A list of event and audit severities to which the webhook is subscribed.
  • subscriptionSeverity: SubscriptionSeverityInput!
  • # The application that will receive the webhook.
  • providerType: ProviderType!
  • # The authentication type and token to authenticate the endpoint.
  • authInfo: AuthInfoInput
  • }

link Require by