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.
- app.post("/api/webhook", (req, res) => {
- console.log("Webhook event received:", req.body);
- res.status(200).send(req.body);
- });