Integration Webhooks
What integration webhooks are
Section titled “What integration webhooks are”Integration webhooks are platform-initiated HTTP callbacks — the Untis Platform calls endpoints you provide, rather than the other way round. Each webhook has a fixed purpose in the integration lifecycle:
- Credentials transfer — the platform sends your application the credentials it needs to authenticate on behalf of a school.
- Deactivation — the platform notifies your application that a school’s access has been revoked.
Webhooks are not OAuth-authenticated. They are covered by this section, not by the Authentication or Authorization documentation, which cover token-based flows your application initiates.
Common request flow
Section titled “Common request flow”Every inbound platform request follows the same three-step pattern:
-
Receive — the Untis Platform sends an HTTPS
POSTrequest to your configured endpoint with a JSON body and signature headers. -
Verify — you check the request signature against the public key to confirm the request genuinely came from the Untis Platform. This is a hard requirement — never skip it.
-
Handle — once the signature is valid, you process the payload according to the specific webhook’s documented purpose and return a
2xxresponse.
Security requirements
Section titled “Security requirements”All platform-initiated requests are signed with an RSA private key held by the Untis Platform. Your application must verify the signature using the published public key before trusting any payload data.
- Every request carries two headers:
Authorization(the base64-encoded RSA signature) andAlgorithm(the algorithm used, e.g.SHA256withRSA). - Signature verification is a prerequisite for all webhook handlers — credentials transfer and deactivation alike.
- How to verify is fully documented in Verifying the Untis Platform Identity.
Available webhook types
Section titled “Available webhook types”| Webhook | Your endpoint role | Purpose |
|---|---|---|
| Credentials transfer | Receiver | Receive credentials when a school activates your app |
| Deactivation | Receiver | Receive notification when a school deactivates or deletes your app |
Endpoint URLs for credentials transfer and deactivation are configured in your platform application setup in PAM. See Get Your Platform Application for details.