diff --git a/apps/web/pages/api/integrations/[...args].ts b/apps/web/pages/api/integrations/[...args].ts index b77c17252c..aed2608820 100644 --- a/apps/web/pages/api/integrations/[...args].ts +++ b/apps/web/pages/api/integrations/[...args].ts @@ -54,6 +54,11 @@ const handler = async (req: NextApiRequest, res: NextApiResponse) => { } const [appName, apiEndpoint] = args; + + if (apiEndpoint === "add" && !req.session?.user?.id) { + return res.status(401).json({ message: "You must be logged in to do this" }); + } + try { /* Absolute path didn't work */ const handlerMap = (await import("@calcom/app-store/apps.server.generated")).apiHandlers;