Skip to main content
You can define the webhook URL in your job board settings page. When a new job is published, a POST HTTP request will be made to that URL, carrying a JSON payload that looks like this:
The receiving URL should return an appropriate HTTP response code, e.g.
  • 200 for success
  • 4xx for client errors
  • 5xx for server errors
Webhook requests will be retried up to 5 times until successfully received.
Make sure your webhook URL is secure, so you don’t leak user data!

Example use cases

  • Post a notification on Slack, Discord and/or other communities
  • Post a social media post on LinkedIn, X, Facebook, etc.
  • Analyze/transform the published data and send an email notification
  • Trigger an AI agent workflow

Automation tools

There are many tools you can use to receive the webhook and trigger different workflows. Here are just a few for your reference: