Skip to main content
Version: v0.2b

Implementing the Endpoint

First you will need to create an endpoint to receive the webhook. You can do this easily in the language of your choice:

// Using express

const express = require("express");
const bodyParser = require("body-parser");

const router = express.Router();
const app = express();

app.use(bodyParser.json());

router.post(/handle’,(request,response) => {
// Do something with the request here

return;
});

app.use("/", router);