Skip to main content

When to use this

Webhooks let your system automatically receive updates from Hireflix when interview events happen, such as when a candidate completes an interview or when a recruiter changes the interview’s status. Instead of polling the API repeatedly, you can configure Hireflix to push these events to your backend in real time.

Create a webhook

You can create a webhook in two ways:

Option 1: From the Hireflix Dashboard

Go to Profile → Webhooks in your Admin dashboard and click the “Create new webhook” button.
  1. Add your webhook endpoint URL (e.g., your app’s callback URL).
  1. Select the events you want to subscribe to:
  • interview.create
  • interview.finish
  • interview.status-change
  • interview.delete
  • interview.score-updated
  1. Enable Active and click Save.
Webhooksenableinadmindashboard Pn

Option 2: From the API (GraphQL)

Supported webhooks events

You can optionally sign webhook events to prove authenticity. Follow this how-to guide to learn more about signing and validating events.

Example payloads

event: Interview.create

This event fires when an invite is sent:
This event triggers when a candidate completes an interview. You can learn more about interview status in this how-to about updating an interview status.
This event fires when the interview status changes (e.g., moved to “shortlisted” or “discarded”).
This event fires when the score for a completd interview has been updated.
This event fires when an interview is deleted.

What’s next?

Validate Authenticity of Webhook Events

Next, make sure to check out the guide on how to verify the authenticity of webhook events.