From 88d14a50d34a58533485d01db5d341006f761b3a Mon Sep 17 00:00:00 2001 From: pabloFuente Date: Tue, 14 May 2024 19:10:06 +0200 Subject: [PATCH] Fix Node to return 200 OK on webhook handler --- application-server/node/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/application-server/node/index.js b/application-server/node/index.js index 20db2338..20609817 100644 --- a/application-server/node/index.js +++ b/application-server/node/index.js @@ -45,6 +45,7 @@ app.post("/webhook", async (req, res) => { } catch (error) { console.error("Error validating webhook event", error); } + res.status(200).send(); }); app.listen(SERVER_PORT, () => {