Webhooks
Endpoints for registering, listing, testing, and deleting webhooks.
Webhooks
Use these endpoints to register webhooks, fetch available events, test delivery, and delete webhook configurations.
When to use this API
Typical flows:
- Register webhooks to be notified about key events (e.g. payments, transfers, KYC updates).
- Discover which event types are available before subscribing.
- Test webhook delivery during development or troubleshooting.
- Remove outdated or compromised webhook subscriptions.
Core operations
- List webhooks –
GET /webhooks - List webhook events –
GET /webhooks/events - Register webhook –
POST /webhooks/register
Testing & maintenance
- Test webhook delivery –
POST /webhooks/test - Delete webhook by ID –
DELETE /webhooks/{webhookId}
Environment & access
- Webhooks usually call back into your publicly accessible URL; make sure sandbox and production targets are configured correctly.
- Verify signatures or secrets on your side to ensure webhook authenticity.
See also
- Getting Started:
/docs - Transactions Management:
/docs/transactions-management
OPEN BANKING DOCS