When to use this
Use this when you need to read back your account’s webhook configuration — for example, to display a “manage webhooks” screen in your own app, confirm a webhook’s currentevents/active state before deciding whether to call updateWebhook, or grab an id to pass into deleteWebhook or the delivery logs query.
Restricted to the Admin/Owner of your Hireflix account, same as creating a webhook.
List all webhooks
Don’t forget to update the Hireflix API Key in theheaders.
Explanation
- id – the webhook’s unique identifier, needed for
updateWebhook,deleteWebhook, and the delivery-logs query. - url – the callback endpoint Hireflix
POSTs events to. - events – the event types this webhook is currently subscribed to.
- active – whether the webhook is currently enabled.
- external – an optional identifier you can set for your own third-party integration bookkeeping.
- owner / company – the user and company IDs associated with the webhook.
Example Response
Get a single webhook
If you already have theid (e.g. saved from when you created it), you can fetch just that one webhook instead of listing all of them.
Example Response
Learn next?
Let’s learn how to update a webhook.

