Webhook
What are webhooks?
Receiving an event
// Using Express
app.post("/my/webhook/url", function(req, res) {
// Retrieve the request's body
var event = req.body;
// Do something with event
res.send(200);
});Verifying events
Responding to an event
Supported events
Last updated