Overview
Webhooks allow you to subscribe to events in a FreJun account with your integration installed. Rather than your application polling FreJun for events, FreJun can send an HTTPS request to an endpoint you configure.
Requirements
- FreJun app
- A Publicly available HTTPS endpoint for receiving webhooks from FreJun
info
- If you prefer to handle webhooks directly in the browser instead of using APIs, you can do so via our web app.
- Login with your credentials → Navigate to Settings → Developer tab → Click on your OAuth app (or create a new one).
- Once inside the app, scroll down to the Webhooks section to configure your webhook settings.
Timestamp Format
All timestamps in webhook payloads are timezone-aware and include the timezone offset.
Example timestamp format:
2026-01-20T01:01:01.1234+05:30
This format follows the ISO 8601 standard with:
- Date and time components
- Microsecond precision
- Timezone offset (e.g.,
+05:30for Asia/Kolkata)