Webhooks
React when participants complete assessments. HI Platform sends signed HTTPS POSTs to a URL you control, so you can sync results, trigger automation, or update dashboards without polling.
How it works
Register an HTTPS endpoint in HI Platform. When an event happens, we send a signed JSON payload. Your service
verifies the signature, returns a 2xx response, and processes the event.
Respond with
2xx to acknowledge. Anything else — non-2xx, timeout, transport error — is treated
as a failure and retried.
Supported events
| Event | When it fires |
|---|---|
assessment.completed |
A single assessment item has been scored and is ready to consume. |
participation.completed |
The participant has finished every assessment requested from them on the project. |
Full details: Events.
Next steps
- Quickstart — Register a test endpoint and trigger your first event.
- Payloads — JSON shape of each event.
- Security — Verifying signatures.
- Delivery — Retries, idempotency, timeouts.