Skip to content
Back to News
Changelog

Add webhook delivery system with automatic retries

apiwebhooks

We added a complete webhook delivery system to getpeppr.

Features

SDK support

const peppr = new Getpeppr({ apiKey: "..." });

// Verify incoming webhooks
const event = peppr.webhooks.verify(payload, signature, secret);

Update (2026-09-03): the published SDK exports the class as Peppol and the verifier as webhooks.constructEvent(rawBody, signatureHeader, secret). The snippet above is the March API; see the webhooks guide for the current one.

See the webhook documentation for integration details.