Configure Merchant Webhooks
In a nutshell
Merchant webhooks notify your backend when subscription, invoice, payment, and payment-method events happen.Configure your endpoint
Use the webhook URL setup route when enabled for your workspace:If webhook endpoint management is not enabled in your deployment, ask the platform team to configure your webhook URL and signing secret.
Payload shape
Headers
| Header | Description |
|---|---|
x-nombasub-event | Event type. |
x-nombasub-webhook-id | Webhook delivery ID. |
x-nombasub-tenant-id | Tenant ID. |
x-nombasub-timestamp | Timestamp. |
x-nombasub-signature | Signature when signing is configured. |
Handling guidance
- Return a 2xx response quickly.
- Verify signatures when available.
- Process events asynchronously.
- Make handlers idempotent by webhook ID.
