OBJECT

Webhook

Represents user’s configured webhook.

link GraphQL Schema definition

  • type Webhook implements Node {
  • # Types of events user is subscribed on.
  • subscriptions: [WebhookSubscription!]!
  • # URL for the webhook.
  • url: URL!
  • # Indicates if the webhook is active.
  • active: Boolean!
  • # Globally unique identifier.
  • id: ID!
  • }