diff --git a/packages/nodes-base/nodes/Form/utils.ts b/packages/nodes-base/nodes/Form/utils.ts index 2e79c5699ce5f..079ae4278c2d9 100644 --- a/packages/nodes-base/nodes/Form/utils.ts +++ b/packages/nodes-base/nodes/Form/utils.ts @@ -165,7 +165,9 @@ export async function formWebhook( if (options.ignoreBots && isbot(req.headers['user-agent'])) { throw new WebhookAuthorizationError(403); } - await validateWebhookAuthentication(context, authProperty); + if (node.typeVersion > 1) { + await validateWebhookAuthentication(context, authProperty); + } } catch (error) { if (error instanceof WebhookAuthorizationError) { res.writeHead(error.responseCode, { 'WWW-Authenticate': 'Basic realm="Webhook"' });