OBJECT

Webhook

A configured webhook

link GraphQL Schema definition

  • type Webhook {
  • # Pagination cursor
  • cursor: Cursor!
  • # The type of webhook
  • event_type: String
  • # The unique identifier of the webhook
  • id: ID!
  • # Whether the webhook is enabled or not
  • is_enabled: Boolean!
  • # The secret key used to sign the webhook
  • signature_secret: String
  • # The URL that the webhook will be sent to
  • url: String
  • # The events that the webhook is subscribed to
  • webhook_events: [WebhookEvent!]
  • }