Webhooks

Talentech supports webhooks to enable event-driven integrations between our SaaS platform and your systems. Webhooks allow you to receive real-time notifications when specific events occur — such as a candidate applying, a status update, or a new job posting.

Below is a link to a Github repository that contains a functional example of a webhook receiver implemented in .NET and C#. It demonstrates how to:

  • Listen for incoming HTTP POST requests

  • Read and process the JSON payload

  • Validate the authenticity of the webhook using HMAC-SHA256

  • Respond appropriately to valid and invalid requests

Sample Code