What are Webhooks?
Webhooks allow you to receive real-time notifications whenever a new event happens in your Hirempire account. Instead of polling the API to check for updates, Hirempire will instantly send an HTTPPOST request to your specified endpoint as soon as an event occurs.
Webhooks are the most efficient way to stay in sync with your Hirempire data. You receive updates the moment they happen — no delays, no repeated requests.
How It Works
Create a Webhook
Go to hirempire.com/webhooks to create and manage your webhooks. You’ll provide an endpoint URL where Hirempire will send event notifications.
Select Events
Choose which events you want to subscribe to. You can listen for job updates, new applicants, CV processing completions, meetings, and more.
Verify the Challenge
When you register your webhook, Hirempire sends a challenge request to verify your endpoint. Your server must return the challenge value to confirm ownership. See the Challenge Verification page for details.
Webhook Payload Structure
Every webhook payload follows a consistent structure:| Field | Type | Description |
|---|---|---|
event | string | The event type identifier (e.g. job_added) |
timestamp | string | ISO 8601 timestamp of when the event occurred |
Next Steps
Event Types
View all available webhook events
Challenge Verification
Learn how to verify your endpoint
Responses
See example payloads for each event