Webhook data is not being received

Webhook data is not being received

We’ve set up the webhook with a public URL that returns a 200 status on Postman. However, when we ran a test, we didn’t receive anything in the req.body object or see any data from the POST request. As a team of freshers still learning the ropes of development, we would really appreciate it if Zoho could help guide us through this configuration.      

  1. app.post("/api/webhook", (req, res) => {
  2.   console.log("Webhook event received:", req.body);

  3.   res.status(200).send(req.body);
  4. });