Configure a Webhook
To start receiving real-time notifications, you need to configure a webhook in your dashboard.
Steps to create a webhook
Go to the Webhook dashboard.
Click on Create Webhook.
Fill in the following fields:
Name → For your reference only (helps you identify the webhook in your dashboard).
Webhook URL → The public endpoint on your server that will receive webhook payloads (must accept
POST
requests).Events → Select the events you want to be notified about (e.g.,
payment.success
,subscription.expired
).
Save your webhook.
Multiple webhooks
You can create multiple webhooks if needed.
Each webhook can listen to different events and point to different URLs.
This allows you to separate integrations (for example: one webhook for Discord, another one for your internal database).
Good practices
Use a unique URL for each integration (don’t reuse the same webhook for unrelated services).
Make sure your server always responds with an HTTP 200 code to acknowledge receipt.
Log received payloads for debugging purposes.
👉 Once configured, your webhook will immediately start receiving events when they occur.
Last updated