From b6ee90898dfad8c3e275c72a1b2b3d9773fbd8c4 Mon Sep 17 00:00:00 2001 From: April M Date: Mon, 29 Sep 2025 12:28:49 -0700 Subject: [PATCH] remove webhook auth that is not in this release --- docs/docs/Configuration/api-keys-and-authentication.mdx | 2 +- docs/docs/Develop/webhook.mdx | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/docs/docs/Configuration/api-keys-and-authentication.mdx b/docs/docs/Configuration/api-keys-and-authentication.mdx index 3579a80f318c..8329fe757e6b 100644 --- a/docs/docs/Configuration/api-keys-and-authentication.mdx +++ b/docs/docs/Configuration/api-keys-and-authentication.mdx @@ -26,7 +26,7 @@ There are three types of credentials that you use in Langflow: You can use Langflow API keys to interact with Langflow programmatically. By default, most Langflow API endpoints, such as `/v1/run/$FLOW_ID`, require authentication with a Langflow API key. -To require API key authentication for flow webhook endpoints, use the [`LANGFLOW_WEBHOOK_AUTH_ENABLE`](/webhook#require-authentication-for-webhooks) environment variable. + To configure authentication for Langflow MCP servers, see [Use Langflow as an MCP server](/mcp-server). ### Langflow API key permissions diff --git a/docs/docs/Develop/webhook.mdx b/docs/docs/Develop/webhook.mdx index 384e44adbba0..dc4533472007 100644 --- a/docs/docs/Develop/webhook.mdx +++ b/docs/docs/Develop/webhook.mdx @@ -88,11 +88,6 @@ For the preceding example, the parsed payload would be a string like `ID: 12345 Typically, you won't manually trigger the **Webhook** component. To learn about triggering flows with payloads from external applications, see the video tutorial [How to Use Webhooks in Langflow](https://www.youtube.com/watch?v=IC1CAtzFRE0). -## Require authentication for webhooks {#require-authentication-for-webhooks} - -By default, webhooks run as the flow owner without authentication (`LANGFLOW_WEBHOOK_AUTH_ENABLE=False`). -If you want to require API key authentication for webhooks, set `LANGFLOW_WEBHOOK_AUTH_ENABLE=True`. - ## Troubleshoot flows with Webhook components Use the following information to help address common issues that can occur with the **Webhook** component.