Webhook Logs
Monitor deliveries in the admin panel: status, response times, errors, retries.
Health Checks
app.get('/webhooks/health', (req, res) => {
res.status(200).json({
status: 'healthy',
timestamp: new Date().toISOString(),
});
});
Last modified on