Skip to main content

When to use this

Use delete when you no longer want a webhook to receive any events at all — for example, you’re decommissioning an integration or the callback URL is gone for good.
Deleting is permanent and the id cannot be reused. If you just want to temporarily stop deliveries, use updateWebhook with active: false instead.

GraphQL Request

Please make sure to replace the webhook ID. Don’t forget to update the Hireflix API Key in the headers.

Explanation

  • input.id – the webhook you want to remove.
  • deleteWebhooktrue on success. There is no typed error response; check for false/null/errors to detect failure (e.g. an id that doesn’t exist).

Example Response

Learn next?

Let’s learn how to inspect webhook delivery logs.