How create webhook 403 forbidden?
Do you mean how to create a 403 forbidden http error?
You could try
res.status(403).send("Forbidden.");
Such as
app.get('/secret-page', (req, res) => res.status(403).send("Forbidden.");
Live example:
https://0cyyzojjbx6q.runkit.sh/