Webhooks
Receive real-time notifications about payment events
Webhooks
Configure Webhooks
Set up webhook endpoints in your Dashboard
Handle Events
Process webhook payloads in your application
Secure Webhooks
Verify webhook signatures
Webhook Types
All available event types
Troubleshoot
Debug delivery and handling issues
Handler example
app.post('/webhooks/plexy', (req, res) => {
const event = req.body;
switch (event.type) {
case 'payment.succeeded':
handlePaymentSuccess(event.data);
break;
case 'payment.failed':
handlePaymentFailure(event.data);
break;
}
res.status(200).send('OK');
});