POST request to your system when supported customer, payment, invoice, order, subscription, credit note, or support activity occurs.
One webhook URL is configured per BillingServ account. All event types are delivered to that URL. Leave the field blank to disable webhooks.
Configure your endpoint
- Build a public HTTPS endpoint that accepts JSON
POSTrequests. - Open Admin → API Information in BillingServ.
- Enter your endpoint in Webhook URL and save it.
- Select Send test webhook.
- Confirm your endpoint receives a
webhook.testevent and returns a successful response.
- Use
https://. - Use a publicly resolvable host or public IP address.
- Be no longer than 2,048 characters.
- Not contain embedded URL credentials.
- Not point to localhost, private networks, or reserved IP ranges.
Request format
Every delivery uses the same envelope:
Money values are strings with two decimal places to avoid floating-point rounding. Dates use ISO 8601 in UTC. Optional values may be
null.
Delivery and retries
Your endpoint should persist or enqueue the event and respond within 10 seconds. Return a2xx response only after accepting the event.
Failed deliveries are attempted up to five times. Retries use increasing delays of approximately 1 minute, 5 minutes, 30 minutes, and 2 hours. Deliveries can therefore arrive more than once or out of order.
Use the payload id as an idempotency key and make event processing safe to repeat. Do not depend on delivery order; use created_at and the resource timestamps when ordering changes matters.
See the event and payload reference or build an endpoint.