File size: 132,242 Bytes
3e0d29a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | id,platform,category,error,code,versions,cause,fix_url,fix_steps,source,source_url,published
autogen-valueerror-message-type-structuredmessage-agentresponse-,AutoGen,version,ValueError: Message type StructuredMessage[AgentResponse] is not registered.,,autogen-agentchat>=0.6.4,"Since autogen-agentchat 0.6.4 the Teams integration changed message-type registration; agents using output_content_type add custom StructuredMessage subtypes never registered with the group-chat container, so logging raises ValueError.",,Downgrade to autogen-agentchat==0.6.2 as a temporary workaround. Remove output_content_type from affected agents if the structured type is not strictly required. Watch issues #6795 and #6983 for an official patch that registers custom message types at group-chat init.,mined,https://github.com/microsoft/autogen/issues/6795,
autogen-failed-to-instantiate-component-model-info-is-required-w,AutoGen,config,Failed to instantiate component: model_info is required when model name is not a valid OpenAI model,,autogen-studio==0.4.2,"AutoGen cannot infer capabilities for non-standard identifiers (Azure deployment names, local models), so it requires an explicit model_info dict when the name does not match a known OpenAI slug.",,"Add a model_info dict specifying capabilities (e.g. {""vision"": false, ""function_calling"": true, ""json_output"": true}). For Azure OpenAI, pair the deployment name with the matching model_info for the underlying model. See the AutoGen ModelInfo dataclass for required keys.",mined,https://github.com/microsoft/autogen/issues/6189,
autogen-typeerror-create-takes-1-argument-s-but-2-were-given,AutoGen,config,TypeError: create() takes 1 argument(s) but 2 were given,,autogen-ext==0.4.5,"MagenticOneGroupChat passes chat.completions from the standard OpenAI client to create(), but the AsyncAzureOpenAI wrapper uses a different signature that rejects the extra positional argument.",,"Pass an AzureOpenAIChatCompletionClient (from autogen_ext.models.openai) instead of extracting service_client.chat.completions directly. Construct it with azure_deployment, azure_endpoint, and api_version. Do not mix the raw Azure OpenAI SDK client with MagenticOne components.",mined,https://github.com/microsoft/autogen/issues/5349,
claude-code-no-available-ides-detected,Claude Code,install,No available IDEs detected,,,"When /ide in Claude Code reports ""No available IDEs detected"" while Cursor is open on the Windows host but Claude Code is installed inside WSL, relaunch Cursor from inside WSL with cursor",https://automatelab.tech/blog/ai-coding/claude-code-no-available-ides-wsl-cursor/,,guide,,2026-05-21
claude-code-claude-code-creating-a-nul-file-on-windows,Claude Code,other,Claude Code creating a 'nul' file on Windows,,,"If Claude Code keeps dropping a file named nul in your Windows project and Explorer or del nul refuses to remove it, the fix is two commands",https://automatelab.tech/blog/ai-coding/claude-code-nul-file-windows-fix/,,guide,,2026-05-19
claude-code-mcp-token-expired-without-refresh-token-in-claude-co,Claude Code,auth,MCP Token expired without refresh token in Claude Code,,,"Claude Code's ""Token expired without refresh token"" is bug #25245 ; delete the stale credential entry, re-authenticate via /mcp , and on macOS grant the Keychain item persistent access",https://automatelab.tech/blog/ai-coding/mcp-token-expired-no-refresh-fix/,,guide,,2026-05-16
claude-code-claude-code-sessionstart-hooks-firing-without-contex,Claude Code,config,Claude Code SessionStart hooks firing without context,,,"If a Claude Code plugin's SessionStart hook fires successfully but Claude never sees the additionalContext (bug #16538), move the hook config out of the plugin's hooks.json and into ~/.claude/settings.json",https://automatelab.tech/blog/ai-coding/claude-code-sessionstart-hook-no-context/,,guide,,2026-05-09
claude-code-mcp-servers-failed-to-connect,Claude Code,connectivity,MCP servers failed to connect,,,"An MCP server child process is aborted during initialization, often due to a missing API key in keychain or an init timeout before the server responds.",,"Verify your Anthropic API key is set and reachable. Test the MCP server binary directly in a terminal to confirm it starts within the timeout. Create the missing cache directory: mkdir -p ~/Library/Caches/claude-cli-nodejs. If the same config works in Claude Desktop, update Claude Code to the latest version (a known CLI-only bug).",mined,https://github.com/anthropics/claude-code/issues/1611,
claude-code-oauth-error-failed-to-fetch-user-roles-oauth-account,Claude Code,auth,OAuth error: Failed to fetch user roles: OAuth account information not found in config,,,The OAuth flow completes in the browser but Claude Code fails to write or read back the token from the config file.,,Full reinstall: npm uninstall -g @anthropic-ai/claude-code; rm -rf ~/.claude ~/Library/Application\ Support/ClaudeCode; npm cache clean --force; npm install -g @anthropic-ai/claude-code; then log in again.,mined,https://github.com/anthropics/claude-code/issues/1484,
claude-code-api-error-401-authentication-error-invalid-bearer-to,Claude Code,auth,API Error: 401 authentication_error: Invalid bearer token,401,2.0.28,"A regression in v2.0.28 made the stored bearer token invalid or unable to refresh, persisting across logout/login.",,"Run 'claude logout' then 'claude login' to force a new token. If it persists, remove ~/.claude/claude.json and any ANTHROPIC_AUTH_TOKEN/ANTHROPIC_BASE_URL env vars, reinstall with npm install -g @anthropic-ai/claude-code, and authenticate again.",mined,https://github.com/anthropics/claude-code/issues/10503,
claude-code-oauth-error-timeout-of-15000ms-exceeded,Claude Code,auth,OAuth error: timeout of 15000ms exceeded,,2.1.72,"DNS resolution for auth.anthropic.com fails in certain regions/networks, so the OAuth login request times out after 15 seconds.",,"Confirm auth.anthropic.com resolves with 'nslookup auth.anthropic.com 8.8.8.8'. If not, use a VPN or a different DNS server. Alternatively authenticate via API key by setting ANTHROPIC_API_KEY instead of the browser OAuth flow.",mined,https://github.com/anthropics/claude-code/issues/33238,
claude-code-command-not-found-claude,Claude Code,install,command not found: claude,,,"On macOS with Homebrew-managed Node, npm creates a symlink pointing to the raw JS file rather than the executable launcher, so 'claude' is not on PATH.",,Remove the broken symlink: rm /opt/homebrew/bin/claude. Create the correct one into the Cellar: ln -s /opt/homebrew/Cellar/node/<version>/bin/claude /opt/homebrew/bin/claude. Verify with 'claude --version'.,mined,https://github.com/anthropics/claude-code/issues/3172,
claude-code-claude-code-is-not-supported-on-windows-claude-code-,Claude Code,install,Claude Code is not supported on Windows. Claude Code requires macOS or Linux.,,,"The npm preinstall script detects Windows when 'npm install' runs from a Windows-side path inside WSL, even though the shell is Linux.",,"Use a true WSL terminal (not PowerShell/CMD) and confirm 'uname -a' reports Linux. Ensure npm is the WSL-side binary ('which npm' under /usr/, not /mnt/c/). If npm is Windows-side, install Node natively in WSL (nvm install --lts), then reinstall: npm install -g @anthropic-ai/claude-code.",mined,https://github.com/anthropics/claude-code/issues/188,
claude-code-enoexec-posix-spawn-mnt-c-windows-system32-reg-exe,Claude Code,install,ENOEXEC: posix_spawn '/mnt/c/Windows/System32/reg.exe',ENOEXEC,2.1.108 2.1.118,"Claude Code unconditionally spawns reg.exe on startup for Chrome native-messaging registration; with WSL Windows interop disabled, the file exists at the mount path but cannot execute.",,"If interop must stay disabled, there is no user-side fix as of v2.1.118 - the crash precedes any prompt. As a workaround, temporarily re-enable interop in /etc/wsl.conf ([interop] enabled=true) while launching Claude Code, then disable again. Track the upstream issue for a fix.",mined,https://github.com/anthropics/claude-code/issues/52504,
claude-code-usr-bin-bash-line-1-c-users-name-permission-denied,Claude Code,other,/usr/bin/bash: line 1: /c/Users/<name>: Permission denied,,,"Claude Code builds a shell state-tracking command with an unquoted path; when the Windows username contains a space, Bash word-splits the path and tries to execute the first token.",,"Rename the Windows user to remove the space, or create a new account without a space and run Claude Code from it. Commands still execute correctly despite the error, so it is cosmetic until an upstream fix ships.",mined,https://github.com/anthropics/claude-code/issues/29538,
claude-code-eacces-permission-denied-mkdir-tmp-claude-path-tasks,Claude Code,other,"EACCES: permission denied, mkdir '/tmp/claude/<path>/tasks'",EACCES,,Claude Code uses a shared /tmp/claude/ directory owned by the first user who ran it; other users lack write permission to create subdirectories.,,Recreate with world-writable sticky bit: sudo rm -rf /tmp/claude && sudo mkdir -p /tmp/claude && sudo chmod 1777 /tmp/claude. Alternatively set dangerouslyDisableSandbox: true in .claude/settings.json as a temporary workaround.,mined,https://github.com/anthropics/claude-code/issues/16914,
claude-code-zsh-1-permission-denied-var-folders-t-claude-xxxx-cw,Claude Code,other,zsh:1: permission denied: /var/folders/.../T/claude-XXXX-cwd,,,Claude Code writes a temporary CWD-tracking file to the system temp directory; after a macOS major upgrade the permissions change and block writes from user processes.,,Bash commands still execute correctly - this is cosmetic. There is no user-side fix as the temp path is internal. Check for a newer Claude Code release that resolves it and follow the linked issue for a patch.,mined,https://github.com/anthropics/claude-code/issues/8896,
claude-code-stop-hook-error,Claude Code,config,Stop hook error,,,"Claude Code's hook output validator treats zero bytes of output as a missing JSON object and falsely reports a stop-hook failure, even when the hook exits 0.",,"Confirm the hook works by checking its exit code manually - the error is cosmetic for hooks that produce no output and exit 0. As a workaround, emit an empty JSON object from the hook: echo '{}'. Track the upstream fix in the linked issue.",mined,https://github.com/anthropics/claude-code/issues/10463,
claude-code-debug-found-0-hook-matchers-in-settings,Claude Code,config,[DEBUG] Found 0 hook matchers in settings,,,An extra 'hooks' wrapper object inside each event array makes the hook parser find no valid matchers and silently skip all hook execution.,,"Open ~/.claude/settings.json and remove the intermediate {""hooks"": [...]} wrapper. Each event key should map directly to an array of hook objects. Run /hooks inside Claude Code to verify hooks are now listed.",mined,https://github.com/anthropics/claude-code/issues/11544,
claude-code-invalid-type-expected-string-received-undefined-at-p,Claude Code,schema,invalid_type expected string received undefined at path protocolVersion,,,"Claude Code's MCP init layer drops the protocolVersion field before sending the initialize request to stdio servers, so schema validation fails before any data is sent.",,Use a wrapper shell script instead of referencing the server directly: export MCP_PROTOCOL_VERSION=2025-03-26 and exec your server binary. Register the wrapper: claude mcp add <name> /path/to/wrapper.sh. This bypasses the internal validation step.,mined,https://github.com/anthropics/claude-code/issues/768,
claude-code-failed-to-reconnect-to-mcp-server,Claude Code,connectivity,Failed to reconnect to MCP server,,,"Claude Code spawns MCP subprocesses with an unescaped working directory; when its launch directory contains spaces or special characters (e.g. iCloud Drive), spawning fails.",,Launch Claude Code from a directory whose full path has no spaces or special characters: cd ~/Projects/myproject && claude. The MCP server's own cwd setting does not prevent this - the launch directory of Claude Code itself must be clean. Confirmed upstream bug with no config workaround.,mined,https://github.com/anthropics/claude-code/issues/19518,
claude-code-api-error-rate-limit-reached-stale-cached-plan-after,Claude Code,rate-limit,API Error: Rate limit reached (stale cached plan after upgrade),429,2.1.92,"Claude Code caches subscriptionType and rateLimitTier at login and never refreshes them, so after a plan upgrade the CLI still enforces old limits.",,"Clear the accessToken, refreshToken, expiresAt, subscriptionType, and rateLimitTier fields in ~/.claude/.credentials.json, then run 'claude login' to force a fresh OAuth flow. Verify the correct plan shows in the CLI header before resuming.",mined,https://github.com/anthropics/claude-code/issues/43639,
claude-code-api-error-rate-limit-reached-despite-max-subscriptio,Claude Code,rate-limit,API Error: Rate limit reached despite Max subscription and low usage,429,2.1.63,A corrupted credentials.json (subscriptionType and rateLimitTier both null) makes the CLI enforce API-tier limits even after a successful re-login that shows Max in the header.,,"Run 'claude logout', then delete or zero the subscriptionType and rateLimitTier fields in ~/.claude/.credentials.json. Run 'claude login' and confirm /status shows the correct tier and sane usage. If it persists, wait for the session reset window shown in the error.",mined,https://github.com/anthropics/claude-code/issues/29579,
crewai-crewai-hierarchical-delegateworktoolschema-validation-err,CrewAI,schema,CrewAI hierarchical DelegateWorkToolSchema validation error,,,If a CrewAI crew running Process.hierarchical raises 2 validation errors for DelegateWorkToolSchema ..,https://automatelab.tech/blog/ai-agents/crewai-hierarchical-delegateworktoolschema-validation-error-0114/,,guide,,2026-05-11
crewai-validationerror-1-validation-error-for-task-expected-outp,CrewAI,schema,ValidationError: 1 validation error for Task - expected_output Field required,,crewai>=0.19,The CrewAI Task model marks expected_output as required with no default; omitting it (or a Pydantic 2.8+ alias edge case) raises a ValidationError at instantiation.,,"Always pass an explicit expected_output string when constructing a Task. If the error appears even when present, pin pydantic<2.8 as a temporary workaround for the upstream alias-handling bug. Upgrade CrewAI once a patch is released.",mined,https://github.com/crewAIInc/crewAI/issues/973,
crewai-attributeerror-array-api-not-found-importerror-numpy-core,CrewAI,install,AttributeError: _ARRAY_API not found; ImportError: numpy.core.multiarray failed to import,,,"A transitive dependency (typically onnxruntime) was compiled against NumPy 1.x and cannot load under NumPy 2.x, which removed the legacy numpy.core namespace.",,"Downgrade NumPy with pip install 'numpy<2' as an immediate fix, or upgrade onnxruntime to a NumPy-2-compatible build. Check compiled deps with pip list | grep onnx and update any that predate NumPy 2 support.",mined,https://github.com/crewAIInc/crewAI/issues/2431,
crewai-click-exceptions-abort-you-are-missing-the-mcp-package,CrewAI,install,click.exceptions.Abort: You are missing the 'mcp' package,,,"MCPServerAdapter.__init__() calls click.confirm() interactively when the mcp package is absent, which aborts in non-TTY environments like FastAPI, Docker, and CI.",,"Install the package: pip install mcp crewai-tools[mcp]. In headless environments, ensure mcp is in your requirements file so MCPServerAdapter never reaches the prompt. Track the upstream fix (raise ImportError instead of prompting) in CrewAI issue #3163.",mined,https://github.com/crewAIInc/crewAI/issues/3163,
cursor-agent-execution-timed-out,Cursor,timeout,Agent Execution Timed Out,,,"After upgrading to Cursor 3, Jupyter notebooks refuse to open and the AI panel throws Agent Execution Timed Out because of a stale extension cache; delete %APPDATA%\Cursor\CachedExtensions and restart",https://automatelab.tech/blog/ai-coding/cursor-3-jupyter-agent-execution-timed-out-fix/,,guide,,2026-05-15
cursor-cursor-rules-not-loading-4-causes-and-how-to-fix-each,Cursor,other,Cursor rules not loading: 4 causes and how to fix each,,,Cursor reads project rules from .cursor/rules/<name>.mdc at the repository root,https://automatelab.tech/blog/ai-coding/cursor-rules-not-loading-fix/,,guide,,2026-05-07
cursor-we-ve-hit-a-rate-limit-with-the-provider-please-switch-to,Cursor,rate-limit,"We've hit a rate limit with the provider. Please switch to the 'auto' model, another model, or try again in a few moments.",,,Cursor's upstream AI provider temporarily throttled requests due to high demand or plan-level throughput limits.,,"Switch the active model to 'auto' or a different model in the model picker. Wait 30-60 seconds and retry. If it persists, check your provider's usage dashboard for quota exhaustion. A higher Cursor/provider tier increases throughput.",mined,https://forum.cursor.com/t/weve-hit-a-rate-limit-with-the-provider-please-switch-to-the-auto-model-another-model-or-try-again-in-a-few-moments-request-id-0f6c18ed-7a67-4672-8375-17d168f8093c/137327,
cursor-user-api-key-rate-limit-exceeded,Cursor,rate-limit,User API Key Rate limit exceeded,,,"Cursor relays the rate-limit from the upstream provider when a BYOK key exhausts its requests-per-minute or token quota, which Agent mode can hit quickly via parallel tool calls.",,"Wait for the provider's rate-limit window to reset (usually 60s). Check your tier's RPM/TPM limits on the provider dashboard. In Settings > Models, reduce Agent concurrency or switch to a higher-quota model. Upgrade the provider tier if Agent workloads routinely hit the cap.",mined,https://forum.cursor.com/t/user-provided-api-key-rate-limit-exceeded/18576,
cursor-authentication-blocked-please-contact-your-admin,Cursor,auth,"Authentication blocked, please contact your admin",,,"The Auth0 sign-in flow detects a policy restriction - an org SSO/email-domain block, a school/work network firewall, or a flagged account - and rejects the attempt.",,"Try signing in with a personal email (Gmail/GitHub) not subject to the blocked domain. Allowlist cursor.com / auth.cursor.sh in corporate SSO or firewall settings. If a school/work email, ask IT to whitelist auth.cursor.sh. If the account is flagged, email hi@cursor.sh with the details.",mined,https://forum.cursor.com/t/authentication-blocked-please-contact-your-admin/117526,
cursor-codebase-indexing-failed,Cursor,other,Codebase indexing failed,,,"Background indexing cannot complete due to an oversized repo, a network/TLS failure, low disk space, or a corrupted local index cache.",,"Add large generated dirs (node_modules, dist, .git) to a .cursorignore. Ensure 5+ GB free disk. Run 'Cursor: Reindex Codebase' from the Command Palette. If it persists, close Cursor, delete the index cache (macOS ~/Library/Application Support/Cursor/User/globalStorage; Windows %APPDATA%\Cursor\User\globalStorage), and reopen.",mined,https://forum.cursor.com/t/codebase-indexing-failed-no-way-to-fix/30522,
cursor-connection-failed-if-the-problem-persists-please-check-yo,Cursor,connectivity,"Connection failed. If the problem persists, please check your internet connection or VPN",,,"Cursor cannot reach its backend API servers, most often because a VPN, corporate proxy, or firewall is intercepting or blocking the TLS connection.",,"Disconnect the VPN and retry. In Settings search 'HTTP/2' and enable 'Disable HTTP/2', then restart. Behind a corporate proxy, set the proxy under Settings > Network Proxy and whitelist api2.cursor.sh. Check Cursor's status page for incidents.",mined,https://forum.cursor.com/t/connection-failed-if-the-problem-persists-please-check-your-internet-connection-or-vpn/64673,
cursor-your-conversation-is-too-long-please-try-creating-a-new-c,Cursor,other,Your conversation is too long. Please try creating a new conversation or shortening your messages,,,"The accumulated tokens in the current chat (files, tool outputs, history) exceeded the model's context window.",,"Start a fresh chat (Cmd/Ctrl+N) and reference only the needed files. Remove large @file/@codebase attachments no longer relevant. Break long multi-step tasks into separate chats. If it fires in a new chat, check no very large files are auto-attached via .cursorrules.",mined,https://forum.cursor.com/t/your-conversation-is-too-long-please-try-creating-a-new-conversation-or-shortening-your-messages/36171,
cursor-the-agent-execution-provider-did-not-respond-within-4-sec,Cursor,other,The agent execution provider did not respond within 4 seconds. The extension host may be unresponsive.,,,Cursor's extension host process stops responding - often after an update or on resource-constrained machines - preventing the Agent from invoking tools.,,"Run 'Developer: Restart Extension Host' from the Command Palette. If that fails, quit and relaunch Cursor. Run 'cursor --disable-extensions' to isolate a crashing third-party extension. If still broken, reinstall from cursor.com/downloads (partial-update corruption).",mined,https://forum.cursor.com/t/the-agent-execution-provider-did-not-respond-within-4-seconds-this-may-indicate-the-extension-host-is-not-running-or-is-unresponsive/148822,
cursor-waiting-for-extension-host,Cursor,other,Waiting for extension host,,,"On startup (often after an update or inside WSL/Remote-SSH), Cursor's extension host fails to initialise, leaving the editor stuck loading.",,"Run 'Developer: Reload Window' from the Command Palette. Launch with 'cursor --disable-extensions' to find a conflicting extension. For WSL, verify the cursor-server binaries inside WSL are not outdated (reconnect Remote-SSH). As a last resort, reinstall the latest build from cursor.com/downloads.",mined,https://forum.cursor.com/t/after-last-update-stuck-at-waiting-for-extension-host/149538,
cursor-please-update-to-the-latest-version-of-cursor-at-cursor-c,Cursor,version,Please update to the latest version of Cursor at cursor.com/downloads to continue using the Agent,,,Cursor's backend enforces a minimum client version; older builds lack the API surface current agent tooling needs and are blocked from new Agent sessions.,,"Download and install the latest release from cursor.com/downloads, then fully restart. If auto-update is stuck, manually download the installer and run it over the existing installation.",mined,https://forum.cursor.com/t/update-to-continue-using-the-agent/132956,
cursor-the-model-does-not-work-with-your-current-plan-or-api-key,Cursor,auth,The model does not work with your current plan or API key,,,"The selected model is restricted to a higher tier, usage-based billing is off, or a BYOK key is routed through an incorrect base URL.",,"In Settings > Models, select a model your plan supports (free tier excludes several frontier models). Under API Keys, disable 'Override OpenAI Base URL' if enabled (it breaks Anthropic key routing). Enable usage-based billing for on-demand premium models. Verify the BYOK key is in the correct provider field.",mined,https://forum.cursor.com/t/does-not-work-with-your-current-plan-or-api-key/148745,
cursor-we-encountered-an-issue-when-using-your-api-key-provider-,Cursor,other,We encountered an issue when using your API key: Provider was unable to process your request,,,"The provider rejected the request at the API level - typically because 'Override OpenAI Base URL' is enabled while using an Anthropic key, sending a malformed request to the wrong endpoint.",,"In Settings > Models > API Keys, turn off 'Override OpenAI Base URL'. Confirm the key is in the correct provider field with no whitespace. Test the key independently (curl or the provider playground) to rule out a revoked/quota-exhausted key. If a 400, confirm the model name is one the key's org can access.",mined,https://forum.cursor.com/t/we-encountered-an-issue-when-using-your-api-key-provider-was-unable-to-process-your-request/142193,
cursor-error-invalid-api-key-provided,Cursor,auth,Error: invalid api key provided,,,"The stored API key is malformed, contains invisible whitespace from a browser copy, has been revoked, or is in the wrong provider field.",,"Delete the key in Settings > Models > API Keys and retype/paste it as plain text from the provider dashboard, with no leading/trailing spaces or newlines. Verify the key is active and not revoked. Ensure it is in the field matching its provider (Cursor has separate inputs per provider).",mined,https://forum.cursor.com/t/error-invalid-api-key-provided/148383,
cursor-ai-features-broken-econnreset-stuck-on-local-proxy-127-0-,Cursor,connectivity,AI features broken: ECONNRESET stuck on local proxy 127.0.0.1,ECONNRESET,,"Cursor's traffic is intercepted by a local proxy (Clash, v2ray) on localhost that resets the TCP connection, blocking all AI API calls.",,"Pause or exit the local proxy and restart Cursor to test recovery. In Settings, enable 'Disable HTTP/2' and restart. If the proxy is required, point Cursor's network proxy setting at the correct address rather than relying on system-wide interception. Check the proxy logs for TLS inspection/cert pinning blocking Cursor.",mined,https://forum.cursor.com/t/bug-ai-features-completely-broken-econnreset-stuck-on-local-proxy-127-0-0-1-port-10809/152454,
cursor-bad-user-api-key-unauthorized-user-api-key,Cursor,auth,Bad User API key / Unauthorized User API key,,,"The 'Override OpenAI Base URL' toggle routes Anthropic API requests through OpenAI's endpoint, so auth fails even with a valid key.",,"Go to Settings > Models > API Keys and turn OFF 'Override OpenAI Base URL'. Restart Cursor, open a new chat, select a Claude model, and retry. If the toggle re-enables, disable it again and confirm it stays off before each session.",mined,https://forum.cursor.com/t/anthropic-claude-api-key-not-working-in-cursor-always-returns-bad-user-api-key-unauthorized/145423,
cursor-this-model-does-not-support-tools-please-select-a-differe,Cursor,config,This model does not support tools. Please select a different model and try again,,1.2.2,"Agent mode routed a request to a model (e.g. o3) that does not expose a tool-calling API, often triggered automatically after the previous model hit a usage limit mid-session.",,"Restart Cursor to clear the stale model assignment. If it recurs, open Settings > Models and explicitly select a tool-capable model (claude-3-7-sonnet, gpt-4o) before starting an agent session. Avoid relying on automatic model fallback near usage limits.",mined,https://forum.cursor.com/t/this-model-does-not-support-tools-please-select-a-different-model-and-try-again/116039,
langchain-langchain-multiservermcpclient-notimplementederror-on-,LangChain,schema,LangChain MultiServerMCPClient NotImplementedError on Windows,,,"If a LangChain MultiServerMCPClient example raises NotImplementedError on Windows the moment it tries to spawn an MCP server over stdio, set the asyncio Proactor policy before anything async runs: import sys, asyncio...",https://automatelab.tech/blog/ai-agents/langchain-multiservermcpclient-notimplementederror-windows/,,guide,,2026-05-10
langchain-agent-stopped-due-to-iteration-limit,LangChain,other,Agent stopped due to iteration limit,,,The error Agent stopped due to iteration limit or time limit means a LangChain agent ran out of steps before the model emitted a final answer,https://automatelab.tech/blog/ai-agents/langchain-agent-iteration-limit-error-fix/,,guide,,2026-05-06
langchain-valueerror-system-message-must-be-at-beginning-of-mess,LangChain,schema,ValueError: System message must be at beginning of message list.,,langchain==0.2.7,"LangGraph appends a system message node after the user message is already in state, but the Anthropic API requires the system message to be first.",,Bind the system prompt directly to the ChatAnthropic model via the system= parameter instead of inserting it as a graph node. Remove any initialize_system_prompt node and its edges. This ensures the system message is always first when sent to the API.,mined,https://github.com/langchain-ai/langgraph/issues/982,
langchain-valueerror-invalid-literal-for-int-with-base-10-1-1,LangChain,install,ValueError: invalid literal for int() with base 10: '1+1',,,"The LangGraph CLI's _parse_version() splits Docker version strings on hyphens only, so a SemVer build-metadata segment like 28.1.1+1 leaves '1+1' as the patch component, which cannot be cast to int.",,"Upgrade langgraph-cli to a version with the docker.py parser fix once released. As a workaround, install a Docker release without build metadata (e.g. a plain 28.x.y). The upstream fix splits on '+' before the int cast.",mined,https://github.com/langchain-ai/langgraph/issues/5965,
langchain-langgraph-errors-invalidupdateerror-must-write-to-at-l,LangChain,schema,langgraph.errors.InvalidUpdateError: Must write to at least one of [state keys],,,"A graph node returns a dict that omits all keys defined in the typed state schema, so LangGraph's write-validation rejects the update.",,"Ensure every node returns a dict whose keys match at least one field in your TypedDict state class. Check for typos between the return value and the schema. If a field uses a reducer, verify the reducer accepts the value type the node returns.",mined,https://github.com/langchain-ai/langgraph/issues/740,
langchain-valueerror-missing-required-config-key-store-for-condi,LangChain,config,ValueError: Missing required config key 'store' for conditional edge,,,"LangGraph does not inject the store dependency into conditional edge functions the way it does for nodes, so an edge function declaring a store parameter receives no value at runtime.",,Remove the store parameter from the conditional edge function. Access store data inside a preceding regular node and pass the result through state instead. Track the upstream fix in LangGraph PR #6425 targeting v1.1.,mined,https://github.com/langchain-ai/langgraph/issues/6340,
make-request-has-exceeded-the-allotted-timeout,Make,timeout,request has exceeded the allotted timeout,,,"The error fires when any Make module's outbound API call exceeds Make's ~40s connector cap; fix it with a Break error handler for intermittent slowness, or chunk, sleep, or async-redesign the call when the upstream...",https://automatelab.tech/blog/no-code/make-request-exceeded-allotted-timeout/,,guide,,2026-05-28
make-make-maximum-execution-timeout-40-minutes-with-error-handle,Make,timeout,Make Maximum execution timeout 40 minutes with error handlers,,,"Make raises ExecutionInterruptedError as a scenario-level warning, so per-module Break or Rollback handlers never catch it; the fix is to enable Incomplete Executions, set Break with auto-retry on the slowest module,...",https://automatelab.tech/blog/no-code/make-max-execution-timeout-40-minutes/,,guide,,2026-05-26
make-the-make-http-module-40-second-timeout-error,Make,timeout,the Make HTTP module 40-second timeout error,,,Make's HTTP module times out individual requests at roughly 40 seconds,https://automatelab.tech/blog/no-code/make-http-module-40s-timeout/,,guide,,2026-05-08
make-failed-to-verify-connection-status-code-error-400,Make,auth,Failed to verify connection. Status Code Error: 400,400,,"The OAuth token for a connection expired or was revoked, most often because the Google Cloud app remains in 'Testing' (7-day token lifetime).",,"In Make Connections, reauthorize the affected connection. If it recurs weekly, set the Google OAuth consent screen from 'Testing' to 'In production'. For non-Google services, delete and recreate the connection with fresh credentials.",mined,https://community.make.com/t/failed-to-verify-connection-my-twitter-oauth-2-0-connection-status-code-error-400/30369,
make-cannot-initialize-the-scenario-because-of-the-reason-failed,Make,auth,Cannot initialize the scenario because of the reason 'Failed to verify connection',,,"A module's connection is missing, expired, or lacks scopes, so Make fails the init phase before execution - meaning in-scenario error handlers cannot catch it.",,"Check every module has a connection selected. Reauthorize any invalid connections in the Connections panel, or delete and recreate with the required scopes. Confirm the third-party API key/OAuth app has not been revoked or had scopes reduced.",mined,https://community.make.com/t/error-frequent-cannot-initialize-the-scenario-because-of-the-reason-failed-to-verify-connection-integromat-google-account/10833,
make-cannot-initialize-the-scenario-because-of-the-reason-failed-2,Make,auth,Cannot initialize the scenario because of the reason 'Failed to verify account. Please try again later.',,,"Make's platform-side account verification to a third-party service fails transiently during the scenario init phase, logging 0 operations.",,"Wait a few minutes and re-run; the error is often transient. If it persists, reauthorize the connection. Add a retry router downstream to handle intermittent init failures without losing data.",mined,https://community.make.com/t/how-to-prevent-failed-to-verify-account-please-try-again-later/62892,
make-accountvalidationerror-failed-to-verify-connection-access-d,Make,auth,AccountValidationError: Failed to verify connection. access_denied,,,"The generic HTTP OAuth 2.0 module's token handling does not satisfy a specific API's authorization-code or refresh-token requirements, so the connection looks valid but fails at runtime.",,"Switch from the generic HTTP OAuth module to the service's dedicated Make app if one exists. For a custom HTTP connection, inspect request/response headers with the Make DevTool to find the failing OAuth step. Ensure token refresh is configured and the auth code is not reused after expiry.",mined,https://community.make.com/t/oauth-2-0-request-fails-with-failed-to-verify-connection/59145,
make-the-operation-timed-out,Make,timeout,The operation timed out,,,"A module did not get a response within Make's ~40-second per-module timeout, often from long-running report generation, slow queries, or upstream latency.",,"Add an error handler with a Retry directive on the timed-out module. For consistently slow operations, use the API's async/polling endpoint and restructure the scenario to poll for completion. Use the Make DevTool to log response times and tell consistent vs random timeouts apart.",mined,https://community.make.com/t/random-error-the-operation-timed-out/53015,
make-etimedout-service-is-temporarily-unavailable,Make,connectivity,ETIMEDOUT: Service is temporarily unavailable.,,,"The TCP connection from Make to the target host exceeded the connection timeout - the remote server is unreachable, overloaded, or blocking Make's egress IPs.",,Confirm the target service is online. Allow Make's published egress IPs through the service's firewall/Cloudflare. Add a Retry/Ignore error handler so transient network issues do not fail the scenario permanently. Test the same request from outside Make (e.g. Postman) to isolate the side at fault.,mined,https://community.make.com/t/http-module-keeps-get-warning-etimedout-service-is-temporarily-unavailable/47190,
make-connectionerror-enotfound-service-is-temporarily-unavailabl,Make,connectivity,ConnectionError ENOTFOUND: Service is temporarily unavailable.,,,"DNS resolution for the target hostname failed from Make - a misspelled URL, a changed domain, or a transient DNS outage.",,"Check the URL for typos or deprecated subdomains and confirm the current hostname from the service's docs. If correct, wait and retry (DNS propagation/outage). Add a Retry error handler for transient DNS failures.",mined,https://community.make.com/t/connectionerror-enotfound-service-is-temporarily-unavailable-ilovepdf/30781,
make-there-is-no-listening-for-this-webhook,Make,config,there is no listening for this webhook,,,"A payload was sent to a Make webhook URL not attached to any active, enabled scenario, so there is no listener to receive it.",,"Check the Webhooks panel to confirm the webhook exists and is linked to an active scenario; recreate it if it was detached or deleted. Update the external service to the correct active URL. If the webhook is retired, delete it so the caller gets a 410 and stops calling.",mined,https://help.make.com/fix-general-errors,
make-webhook-was-inactive-for-too-long-and-therefore-was-removed,Make,config,Webhook was inactive for too long and therefore was removed.,,,"Make automatically deletes webhooks not connected to any scenario for more than 5 days, removing the endpoint entirely.",,"Create a new webhook and update the external service with the new URL. To prevent recurrence, always keep webhooks attached to an active (even paused) scenario; keep occasional scenarios disabled rather than deleting them so the URL stays registered.",mined,https://community.make.com/t/automatically-disabling-webhooks/11724,
make-module-initialization-failed-with-an-error,Make,auth,module initialization failed with an error,,,"During a webhook-triggered scenario's startup, Make verifies all module connections; a broken/expired connection means the webhook never starts and its queue is not drained.",,"Find which module's connection failed (check the last successful run's log) and reauthorize or replace it. Because in-scenario error handlers do not fire during init, fix the connection itself. Then run the scenario once manually to confirm the queue starts draining.",mined,https://help.make.com/fix-general-errors,
make-dataerror-invalid-item-in-module-output-expected-object-but,Make,schema,"DataError: Invalid item in module output. Expected Object, but found String",,,A module returned a plain string (an error message or malformed JSON) where Make expected a structured object - often a wrong endpoint URL or an API returning an HTML error page.,,"Verify the module's endpoint URL and that it returns valid JSON. Use the Make DevTool to inspect the raw response - HTML/plain text means the endpoint is wrong or erroring. Fix the URL or parameters and re-run. If incomplete executions are enabled, repair the stored data after fixing.",mined,https://community.make.com/t/dataerror-invalid-item-in-module-output-expected-object-but-found-string/79580,
make-failed-to-verify-connection-service-is-temporarily-unavaila,Make,connectivity,Failed to verify connection. service is temporarily unavailable,,,"Make's connection-verification call to a third-party OAuth/API endpoint got no response or a server error, indicating an outage or maintenance on the remote service.",,"Check the third-party service's status page. Wait for the outage to clear, then reauthorize. Add a retry error handler so transient availability issues do not permanently halt the scenario. If outages are frequent, add a fallback endpoint or a connection monitor.",mined,https://community.make.com/t/odd-failed-to-verify-connection-service-is-temporarily-unavailable-message-with-an-airtable-connection/103524,
make-cannot-initialize-scenario-the-operation-timed-out,Make,timeout,Cannot initialize scenario: 'The operation timed out',,,"Make's init phase (before any module runs) failed because an external service did not respond in time, often with slow watch-trigger endpoints like email or DB polling.",,"Recheck the polling module's config (IMAP settings, SQL connection string) for wrong addresses/ports causing slow handshakes. Replace the module with a fresh instance of the same type. If intermittent, disable and re-enable the scenario to force Make to re-establish the watch connection.",mined,https://community.make.com/t/cannot-initialize-scenario-the-operation-timed-out/11760,
make-source-is-not-valid-json,Make,schema,Source is not valid JSON,,,"The Parse JSON module received a non-JSON string - commonly AI output wrapped in markdown code fences, or an Array Aggregator output not first converted to a string.",,"If from an AI module, add a text-replace step to strip the ```json and ``` fences before Parse JSON. If from an Array Aggregator, pass it through join() (or map()+join()) to produce a proper JSON string first.",mined,https://community.make.com/t/parse-json-module-source-is-not-valid-json/39650,
make-400-invalid-argument-unable-to-parse-range,Make,config,400: INVALID_ARGUMENT - Unable to parse range,400,,"The Google Sheets module's stored sheet name no longer matches the actual tab - it was renamed, or it references the document title instead of the sheet name.",,"Open the Google Sheets module and re-select the Spreadsheet, then re-select the Sheet Name so it refreshes to the current tab. Avoid special characters (brackets, hyphens) in tab names. If the range is hardcoded, verify it uses the tab name not the document name.",mined,https://community.make.com/t/400-invalid-argument-unable-to-parse-range/61877,
make-validation-failed-for-1-parameter-s-missing-value-of-requir,Make,schema,Validation failed for 1 parameter(s). Missing value of required parameter 'key',,,"A required parameter in a downstream module is mapped to the wrong upstream variable, or the upstream module produced no output so the mapped variable is empty.",,Open the failing module and re-check each mapped field references the correct bundle from the correct upstream module. Run step-by-step and inspect each module's output bundle before mapping. Add a filter/Router before the module so it only proceeds when the required value is present.,mined,https://community.make.com/t/error-when-trying-to-retrieve-a-record-from-a-datastore/20655,
make-collection-can-t-be-converted-to-text-for-parameter-value,Make,schema,Collection can't be converted to text for parameter 'value',,,A field expecting plain text is receiving an entire collection/array - the mapped variable points to a parent collection instead of a scalar field within it.,,"Expand the mapped variable and select the specific child field (e.g. item.name not item). If the upstream returns an array, use map() to extract the scalar field or join() to flatten to a string before passing it on.",mined,https://community.make.com/t/bundlevalidationerror/4479,
make-failed-to-parse-request-body-as-json-unexpected-eof,Make,schema,Failed to parse request body as JSON: unexpected EOF,400,,"The HTTP module is sending the JSON payload as query parameters or raw text rather than a typed JSON body, so the receiving API sees an incomplete request.",,"In the HTTP 'Make a Request' module, set Body type to 'JSON (application/json)' and put the payload in the Request content field as valid JSON. Do not use Query String fields for body data. Validate the JSON against the API docs before re-running.",mined,https://community.make.com/t/failed-to-parse-request-body-as-json/51868,
make-response-body-is-not-a-valid-json-bad-control-character-in-,Make,schema,Response body is not a valid JSON. Bad control character in string literal in JSON,,,"The external API returned a response containing a raw control character (unescaped newline/tab/binary) inside a JSON string, failing strict parsing.",,"Turn off 'Parse response' in the HTTP module to receive the raw body as a string, then feed it to a Parse JSON module (its parser may tolerate minor issues). If it still fails, use a text-transform to strip/replace the offending characters first. Report the malformed response to the API provider.",mined,https://community.make.com/t/response-body-is-not-a-valid-json/67502,
make-400-invalid-json-payload-received-proto-field-is-not-repeat,Make,config,"[400] Invalid JSON payload received. Proto field is not repeating, cannot start list.",400,,"A multi-value array is passed to a Google API field that expects a single object, so the serializer emits a list the proto definition forbids.",,"Open the module and check each field is not receiving a mapped array variable. Use a Text Aggregator or join() to flatten multi-value inputs to a single string before mapping. If intermittent, add an Ignore/Resume route to log the problematic bundle.",mined,https://community.make.com/t/400-invalid-json-payload-received/17666,
make-imlerror-cannot-read-properties-of-undefined-reading-match,Make,other,IMLError: Cannot read properties of undefined (reading 'match'),,,A module received an empty array or undefined value - often because an upstream trigger (e.g. an RSS feed) returned no new items - and tried to process it as structured data.,,Add a Resume error handler so the scenario continues on empty input rather than crashing. Or insert a filter/Router before the module that checks the array is not empty. Run manually to inspect the upstream output bundle and confirm data is present.,mined,https://community.make.com/t/cannot-read-properties-of-undefined-reading-match-sheets/65872,
make-function-displayerror-finished-with-error-cannot-read-prope,Make,config,Function 'displayError' finished with error! Cannot read properties of undefined (reading 'toString'),,,"The connected service (commonly WordPress) is returning HTML instead of JSON, typically because a security plugin or firewall blocks Make's IPs from the REST API.",,"Whitelist Make's published IP ranges in the server firewall and security plugins (Wordfence, Cloudflare). Confirm the REST API is reachable at {site}/wp-json/. Enable Pretty Permalinks in WordPress. If it persists, temporarily disable security plugins to find the blocking rule.",mined,https://community.make.com/t/the-operation-failed-with-an-error-function-displayerror-finished-with-error-cannot-read-properties-of-undefined-reading-tostring/69023,
make-after-adding-an-iterator-downstream-modules-only-show-value,Make,config,"After adding an Iterator, downstream modules only show 'Value' instead of field names",,,"Modules added after an Iterator were never executed in sequence before configuring, so Make has not inferred their output schema for mapping.",,"Run the scenario after each module addition, not only at the end: run the source, then add and run the Iterator, then add and map downstream modules. If the chain is already built, click 'Run once' on each module top-to-bottom with real data so Make registers the output structure.",mined,https://community.make.com/t/cannot-map-fields-after-iterator/103405,
make-validation-failed-for-1-parameter-s-missing-value-of-requir-2,Make,schema,Validation failed for 1 parameter(s). Missing value of required parameter 'name',,,A required text field is mapped to a variable that evaluates to empty/null at runtime because the upstream source did not include that value in the current bundle.,,Add a filter before the module using 'Text > Is not empty' on the mapped variable so the step is skipped when absent. Or set a fallback with the ifempty() function. Run the preceding module in isolation and confirm the field is actually returned.,mined,https://community.make.com/t/validation-failed-for-1-parameter-s-missing-value-of-required-parameter-name/14215,
make-array-aggregator-output-fails-parsejson-simple-aggregation-,Make,schema,Array Aggregator output fails ParseJSON (simple aggregation causes invalid json),,,"The Array Aggregator produces an array object, not a JSON string; passing it directly to Parse JSON fails because Parse JSON requires a string input.",,"Wrap the aggregator output in join() to produce a comma-separated string (or map()+join() for nested values) before Parse JSON. Validate the result with a JSON validator. For a JSON array string, wrap as '[' + join(array, ',') + ']'.",mined,https://community.make.com/t/simple-aggregation-causes-invalid-json/42965,
make-failed-to-verify-connection-invalid-refresh-token-please-re,Make,auth,Failed to verify connection. Invalid refresh token. Please reauthorize the connection,,,"An OAuth refresh token expired or was revoked, most commonly because the connected Google Cloud app is still in Testing mode, which caps token lifetime at 7 days.",,"In Google Cloud Console, open APIs & Services > OAuth consent screen and PUBLISH APP to move it to Production. Then in Make > Connections, reauthorize the affected connection. Production tokens do not expire weekly, ending the cycle.",mined,https://community.make.com/t/connection-expires-every-7-days-invalid-refresh-token-please-reauthorize-the-connection/55119,
make-429-too-many-requests,Make,rate-limit,429 Too Many Requests,429,,A module exceeded the connected service's API rate limit by sending too many requests in a short window.,,"Add a Sleep module between looping modules (1-2s). For webhook scenarios, enable Sequential Processing so executions do not pile up. For persistent overflow, add a Break error handler so failed bundles queue in Incomplete Executions and retry automatically.",mined,https://community.make.com/t/error-429-or-rate-limit-error/36445,
make-scenario-can-not-be-executed-because-it-has-unresolved-reco,Make,config,Scenario can not be executed because it has unresolved records in incomplete executions,,,"Make blocks execution when the Incomplete Executions queue contains unresolved bundles from a previous failed run, to prevent data duplication.",,"Open the scenario's Incomplete Executions tab and retry or delete every queued bundle until empty. If it looks empty but the error persists, reload the page (a UI caching bug shows a stale empty state). The scenario then runs normally.",mined,https://community.make.com/t/error-scenario-can-not-be-executed-despite-empty-incomplete-executions/69355,
make-no-more-credits-to-execute-a-scenario,Make,config,No more credits to execute a scenario,,,"The organization's monthly operation allowance was fully consumed, pausing all scenarios.",,"Buy additional operations from Make billing, or wait for the monthly reset on your plan anniversary. Paused scenarios resume automatically and queued webhooks are processed. Set a usage alert under Organization > Usage to prevent recurrence.",mined,https://community.make.com/t/no-more-operations-to-execute-a-scenario/36444,
make-reason-for-interruption-maximum-number-of-repeats-exceeded,Make,other,Reason for interruption: Maximum number of repeats exceeded,,,"A Break error-handler exhausted its configured retry attempts without the failing module succeeding, so Make stops retrying and logs an incomplete execution.",,Open the Break module and raise 'Number of Attempts'. Use the Make DevTool debugger to find which module keeps failing and why (often a downstream API outage). Fix the underlying API issue or add an upstream filter so bad bundles never reach the retrying module.,mined,https://community.make.com/t/error-reason-for-interruption-maximum-number-of-repeats-exceeded/98799,
openai-agents-sdk-agents-exceptions-usererror-hosted-tools-are-n,OpenAI Agents SDK,config,agents.exceptions.UserError: Hosted tools are not supported with the ChatCompletions API.,,,"HostedMCPTool (and tools like WebSearchTool) require the Responses API, but the agent was initialised with OpenAIChatCompletionsModel, which uses the Chat Completions endpoint that does not support hosted tools.",,"Switch to the default OpenAIResponsesModel (or omit the model argument) so the SDK uses the Responses API. If you must use Chat Completions, replace hosted tools with MCPServerStdio or MCPServerSse local integrations. Do not mix HostedMCPTool with a ChatCompletions-backed model.",mined,https://github.com/openai/openai-agents-python/issues/1008,
openai-agents-sdk-openai-badrequesterror-400-no-tool-output-foun,OpenAI Agents SDK,schema,openai.BadRequestError: 400 - No tool output found for function call,,openai-agents==0.0.14,"When previous_response_id is passed to Runner.run(), the Responses API expects tool outputs for every function call in that prior response; missing outputs cause a 400.",,"Ensure every tool call in the previous response has a corresponding tool output in the input list before passing previous_response_id. As a diagnostic, omit previous_response_id to confirm the cause. Upgrade past v0.0.14 where this was a known issue.",mined,https://github.com/openai/openai-agents-python/issues/673,
openai-agents-sdk-openai-badrequesterror-400-default-is-not-perm,OpenAI Agents SDK,schema,openai.BadRequestError: 400 'default' is not permitted,,,"The SDK converts a Pydantic output_type to JSON Schema for response_format, but the OpenAI API forbids 'default' keywords and 'oneOf' constructs that Pydantic generates for defaulted fields or discriminated unions.",,"Remove default values from fields in your output_type model, or make them Optional[T] set explicitly in the prompt. For unions, flatten the schema manually rather than using Discriminator. Track the upstream sanitisation fix in SDK issue #474.",mined,https://github.com/openai/openai-agents-python/issues/474,
power-automate-power-automate-flow-401-403-unauthorized-errors,Power Automate,auth,Power Automate flow 401 / 403 Unauthorized errors,401,,A Power Automate cloud flow that returns 401 Unauthorized almost always has an expired connection,https://automatelab.tech/blog/rpa/fix-power-automate-flow-401-403-unauthorized/,,guide,,2026-05-07
power-automate-invalidtemplate-the-provided-value-is-of-type-nul,Power Automate,schema,InvalidTemplate. The provided value is of type 'Null'.,InvalidTemplate,,"An expression using dynamic values fails at runtime because the actual data is null when a string, object, or array was expected - not catchable at save time.",,"Open the failed run, select the action, and inspect Inputs for the actual value. Guard null-prone references with if(empty(...)) or coalesce() to supply a default. Validate types before conversion (e.g. isInt() before int()). For dates, pass an explicit format to formatDateTime()/parseDateTime().",mined,https://learn.microsoft.com/en-us/troubleshoot/power-platform/power-automate/flow-run-issues/getting-errors-null-fields,
power-automate-invalidtemplate-property-selection-is-not-support,Power Automate,schema,InvalidTemplate. Property selection is not supported on values of type 'String'.,InvalidTemplate,,"An expression like item()?['property'] is applied to a plain string instead of an object, often because the dynamic content comes from a different level of the response than expected.",,"Inspect the actual action output in run history to confirm the data shape. Adjust the expression to the correct property path (e.g. body('Action')?['value']?['property']). When iterating, ensure the Apply to each input is the array, not a single string element.",mined,https://learn.microsoft.com/en-us/answers/questions/5189395/power-automate-error-unable-to-process-template-la,
power-automate-openapioperationparametervalidationfailed-the-api,Power Automate,schema,OpenApiOperationParameterValidationFailed. The API operation does not contain a definition for parameter 'item/<FieldInternalName>'.,OpenApiOperationParameterValidationFailed,,"A flow action references a SharePoint/connector field by an internal name that no longer exists or was renamed, so connector schema validation fails.",,"Open the failing action and remove the unrecognized field mapping. Re-add the column using its current internal name from SharePoint list settings. If the column was deleted, recreate it or remove the reference. Save and re-run.",mined,https://powerusers.microsoft.com/t5/Building-Flows/Error-when-trying-to-create-an-item-in-sharepoint-with-multi/td-p/327401,
power-automate-invalidrequestcontent-the-request-content-was-inv,Power Automate,schema,InvalidRequestContent. The request content was invalid and could not be deserialized.,InvalidRequestContent,,"A required field in the action payload (commonly the approval assignedTo, or an attachment property) is null or uses an incorrect property name.",,"Check the run detail to see which field is null/malformed. For approvals, ensure Assigned To has a valid user email and is never blank. For attachments, use the content property formatted as {""name"": ""<file>"", ""content"": ""<base64>""}. Re-run after fixing the payload.",mined,https://powerusers.microsoft.com/t5/Building-Flows/Error-during-Approval-step-InvalidRequestContent/td-p/893129,
power-automate-connectionauthorizationfailed-the-caller-does-not,Power Automate,auth,ConnectionAuthorizationFailed. The caller does not have the minimum required permission on connection.,ConnectionAuthorizationFailed,,The flow maker or running account lacks permission to use one of the connections referenced in the flow.,,"In My Flows, open the flow > Edit > Connections and re-authorize or replace any connection with a warning icon with one owned by or shared with the running user. In solutions, update the connection reference. Verify the user has at least the Environment Maker role.",mined,https://learn.microsoft.com/en-us/troubleshoot/power-platform/power-apps/connections/best-practices-when-updating-a-flow,
power-automate-resource-not-found-for-the-segment-entitysetname,Power Automate,schema,Resource not found for the segment '<EntitySetName>'.,,,"A Dataverse action references an entity set name or custom process action that is incorrect, misspelled, or inactive.",,"Confirm the logical collection (plural) name by opening the table in a Solution > See solution layers. Use the exact logical collection name (e.g. cr123_customentities, not 'Custom Entities'). If it is a custom process action, verify it is Active under Settings > Processes. Re-save and test.",mined,https://powerusers.microsoft.com/t5/Microsoft-Dataverse/Resource-not-found-for-the-segment/m-p/1222562,
power-automate-principal-user-is-missing-prvcreate-entityname-pr,Power Automate,auth,Principal user is missing prvCreate<EntityName> privilege.,,,The service account or user running the Dataverse action has a security role lacking the required Create/Read/Write privilege on the target table.,,"In Power Platform admin center > Users + permissions > Users, select the user and Manage security roles. Assign a role with the required privilege on the target table (Basic User is often the baseline). Re-run; use Run diagnostics on the user to confirm privileges.",mined,https://powerusers.microsoft.com/t5/Microsoft-Dataverse/Error-Principal-team-is-missing-prvRead-Entity-privilege/td-p/946036,
power-automate-the-dataverse-database-for-this-environment-is-no,Power Automate,config,The Dataverse Database for this environment is not ready yet.,,,Approval flows auto-provision a Dataverse database on first run; that provisioning is still in progress or has failed.,,"In Power Platform admin center, confirm the environment's Dataverse database shows Ready. If provisioning failed, recreate the database or open a support ticket. Once Ready, rerun the flow. Ensure the running user has a Power Automate per-user/per-flow license to satisfy provisioning prerequisites.",mined,https://learn.microsoft.com/en-us/troubleshoot/power-platform/power-automate/approvals/flow-approval-cds-provisioning-errors,
power-automate-create-an-approval-action-failed-possible-cause-c,Power Automate,config,Create an approval action failed. Possible cause could be invalid users assigned for approval.,,,The email passed to an approval's Assigned To field does not correspond to a valid user in the organization's Azure AD.,,Verify the email is a licensed Microsoft 365 user in the same tenant; guest accounts need the tenant to allow guest approvals. Replace hard-coded addresses with dynamic content from a trigger/lookup and test with a known-valid internal address. Confirm the user is not deleted/disabled in Azure AD.,mined,https://powerusers.microsoft.com/t5/Building-Flows/Help-with-addressing-approval-action-failure/td-p/1828208,
power-automate-flow-run-timed-out-please-try-again,Power Automate,timeout,Flow run timed out. Please try again.,,,"The Power Automate UI timed out waiting for a response; the flow itself is usually still running in the background (a UI-side timeout, not a cancellation).",,"Check My Flows > Run history - the flow likely still ran or succeeded. If an action is genuinely slow, reduce its retry policy from the default 8 retries to a custom policy (e.g. 3 retries, 5s). For flows over 30 days, split long segments into child flows via Run Child Flow.",mined,https://learn.microsoft.com/en-us/answers/questions/5129348/power-automate-my-flows-scheduled-error-flow-run-t,
power-automate-mailboxnotenabledforrestapi-the-mailbox-is-either,Power Automate,config,"MailboxNotEnabledForRESTAPI. The mailbox is either inactive, soft-deleted, or hosted on-premise.",MailboxNotEnabledForRESTAPI,,"The Office 365 Outlook connector cannot reach the mailbox because it is on-premises Exchange, lacks an Exchange Online license, or was soft-deleted.",,"Confirm the user has an active Microsoft 365 license including Exchange Online. If on-premises, configure Exchange hybrid and enable the REST endpoint, or migrate to Exchange Online. Re-authorize the Outlook connector after assigning the license to refresh the token.",mined,https://learn.microsoft.com/en-us/answers/questions/1657546/how-to-fix-mailboxnotenabledforrestapi,
power-automate-your-flow-has-been-suspended-because-it-is-in-vio,Power Automate,config,Your flow has been suspended because it is in violation of your organization's Data Loss Prevention policies.,,,"A DLP policy classifies two or more connectors used in the flow in different data groups (Business vs Non-Business), suspending the flow automatically.",,"In Power Platform admin center > Data policies, find the policy affecting your environment and identify the offending connector combination. With an admin, move the connectors into the same data group or create an environment-specific policy permitting the combination. Then turn the flow back on.",mined,https://learn.microsoft.com/en-us/answers/questions/5707651/power-automate-flow-suspended-due-to-dlp-violation,
power-automate-send-an-http-request-to-sharepoint-failed-cannot-,Power Automate,schema,Send an HTTP request to SharePoint failed: Cannot find resource for the request.,,,"The SharePoint REST URI points to a list, library, or resource that does not exist at the specified relative URL.",,"Double-check the relative URL (e.g. _api/web/lists/GetByTitle('<ExactListTitle>')) - the title is case-sensitive. Confirm the list/library was not renamed. If the site URL changed, update the Site Address. Test _api/web/lists in a browser to enumerate available lists.",mined,https://powerusers.microsoft.com/t5/General-Power-Automate/Send-an-HTTP-request-to-SharePoint-Cannot-find-resource-for-the/td-p/1984115,
power-automate-http-request-failed-a-connection-attempt-failed-b,Power Automate,connectivity,HTTP request failed: A connection attempt failed because the connected party did not properly respond.,,,"The HTTP action could not establish a TCP connection within the timeout, typically because the host is unreachable, firewalled, or slow.",,"Verify the target URL is publicly reachable and not firewall-blocked; whitelist Power Automate outbound IPs if behind a corporate firewall. Confirm the endpoint supports TLS 1.2+. Configure a custom retry policy and higher timeout on the HTTP action. For on-premises endpoints, use the on-premises data gateway.",mined,https://powerusers.microsoft.com/t5/General-Power-Automate/Http-request-failed-the-server-did-not-respond-within-the/td-p/2087164,
power-automate-openapioperationparametervalidationfailed-sendema,Power Automate,schema,OpenApiOperationParameterValidationFailed. SendEmailV2 is missing required property 'Attachments/ContentBytes'.,OpenApiOperationParameterValidationFailed,,"The Send an email (V2) Attachments array is missing the ContentBytes property, usually because the attachment object was built without all required fields.",,"Construct each attachment with both Name and ContentBytes: {""Name"": ""<file>"", ""ContentBytes"": ""<base64>""}. Use outputs('Get_file_content')['body/$content'] for the base64 content. Do not mix ContentBytes (V2) with the older Content property. Test by sending to yourself first.",mined,https://powerusers.microsoft.com/t5/General-Power-Automate/Form-attachment-attaching-to-approval-but-not-to-email/td-p/2426966,
power-automate-expressionevaluationfailed-the-result-of-the-eval,Power Automate,schema,ExpressionEvaluationFailed: the result of the evaluation of 'if' condition expression is not boolean,ExpressionEvaluationFailed,,An expression using dynamic values fails at runtime because the actual data is a different type or null — something the engine cannot catch at save time.,,"Open the failed run, select the action, and inspect Inputs for the actual value. Guard null-prone references with if(empty(...)) or coalesce(). Validate types before conversion (e.g. isInt() before int()). For dates, pass an explicit format to formatDateTime()/parseDateTime().",mined,https://learn.microsoft.com/en-us/power-automate/error-reference,
power-automate-actionfailed-an-action-failed-no-dependent-action,Power Automate,other,ActionFailed: An action failed. No dependent actions succeeded,ActionFailed,,"A connector action returned a 4xx/5xx from the downstream API, or a called child flow failed; Power Automate wraps the real error in this generic status.",,"Open the failed run and expand the action's Outputs to read the real API error and status code, then fix per status (400 bad input, 404 missing, 5xx downstream). To run an action even after a prior failure, set 'Configure run after' to include 'has failed'. For child flows, drill into the child run history.",mined,https://learn.microsoft.com/en-us/answers/questions/1707720/an-action-failed-no-dependent-actions-succeeded,
power-automate-rate-limit-is-exceeded-try-again-in-n-seconds,Power Automate,rate-limit,Rate limit is exceeded. Try again in N seconds,429,,The connector enforced its per-timeframe throughput quota (HTTP 429); each connector sets its own limit independent of the daily API request quota.,,"Set the action's Retry Policy to Exponential Interval to back off on 429. Honor any Retry-After header with a Delay in a Do Until loop. Reduce call frequency by filtering data upstream; for Dataverse, review Service Protection limits and batch with ExecuteMultiple.",mined,https://learn.microsoft.com/en-us/power-automate/guidance/coding-guidelines/understand-limits,
power-automate-flowrunquotaexceeded-too-many-requests-were-made-,Power Automate,rate-limit,FlowRunQuotaExceeded: too many requests were made at the same time,FlowRunQuotaExceeded,,"The user/tenant consumed all daily Power Platform API request actions for their license tier (e.g. 6,000/day seeded, 40,000/day Premium).",,"Check consumption in Power Platform admin center > Analytics. Cut actions per run: replace Apply to Each with Select/Filter array, add OData $filter/$top to Get items, reduce polling frequency. If the workload needs it, upgrade to a Premium/Process license; short term, spread runs across flows or off-peak.",mined,https://learn.microsoft.com/en-us/power-automate/error-reference,
uipath-uipath-studio-2024-10-1-eeui-1603-install-error,UiPath,install,UiPath Studio 2024.10.1 EEUI / 1603 install error,1603,2024.10.1,"The EEUI - InitializeEmbeddedUI failure with MSI exit 1603 on UiPath Studio 2024.10.1 happens when endpoint protection kills rundll32.exe ; whitelist the installer, install .NET 4.8.1 plus ASP.NET Core 8.0, and re-run",https://automatelab.tech/blog/rpa/uipath-studio-2024-10-eeui-initializeembeddedui-install-error/,,guide,,2026-05-24
uipath-globalvariablesnamespace,UiPath,other,GlobalVariablesNamespace,CS0246,,"The CS0246 GlobalVariablesNamespace error fires during library compilation at publish time, even though the project runs fine in the Studio designer",https://automatelab.tech/blog/rpa/uipath-studio-cs0246-globalvariablesnamespace-publish-error/,,guide,,2026-05-12
uipath-cannot-find-the-ui-element-corresponding-to-this-selector,UiPath,other,Cannot find the UI element corresponding to this selector,,,"The selector recorded at design time no longer matches the live element at runtime, typically because the target renders dynamic attributes (title, idx, aaname) that change between sessions.",,Open the activity and use Indicate on Screen to re-record against the live app. Anchor to a stable parent and replace volatile attributes with wildcards (*). Increase the activity Timeout for slow-loading pages. Enable SimulateClick/SimulateType to bypass full selector resolution for input activities.,mined,https://forum.uipath.com/t/error-cannot-find-the-ui-element-corresponding-to-this-selector-exception-type-selectornotfoundexception/103093,
uipath-activity-timeout-exceeded,UiPath,timeout,Activity timeout exceeded,,,"A UI Automation activity could not locate or interact with the target element within its Timeout, usually because the app is slow to render or the robot runs unattended without an active desktop.",,"Increase the activity's Timeout (default 30s). Enable SimulateClick/SimulateType so it works without a visible desktop. Add Wait for Ready: Complete or an explicit delay before the interaction. For unattended robots, ensure the session is logged in and unlocked.",mined,https://forum.uipath.com/t/message-activity-timeout-exceeded/126604,
uipath-the-process-cannot-access-the-file-because-it-is-being-us,UiPath,other,The process cannot access the file because it is being used by another process,,,"An Excel file stays locked by a prior Excel activity or an orphaned Excel.exe because the Application Scope was not closed cleanly, or multiple branches access the same file at once.",,Wrap all Excel operations in one Excel Application Scope (or Use Excel File) so the handle is released on exit. Avoid Append Range in loops; accumulate rows in a DataTable and write once. Kill lingering Excel processes with a Kill Process activity at the start. Ensure no conflicting Excel instance is open.,mined,https://forum.uipath.com/t/ms-excel-overview-cannot-access-the-file-because-it-is-being-used-by-another-process/189079,
uipath-robot-does-not-exist,UiPath,config,Robot does not exist,,,"Orchestrator cannot match the machine's domain\username to a registered Robot, usually a wrong username in the Robot config or a different domain after a rename/migration.",,"Run 'whoami' on the Robot machine for the exact domain\username. In Orchestrator, update the Robot record's username to match exactly (Manage Access for Modern folders, or Folder > Robots for Classic). Verify the Machine Key matches Assistant > Preferences > Orchestrator Settings. Reconnect the Assistant.",mined,https://forum.uipath.com/t/how-to-troubleshoot-robot-does-not-exist-error/504074,
uipath-robot-licensing-failed-there-are-no-available-licenses-on,UiPath,config,Robot Licensing Failed. There are no available licenses on the server. (#1914),1914,,Orchestrator shows no free unattended licenses because duplicate machine entries are consuming slots without releasing them.,,"In Orchestrator > Tenant > Licenses, find duplicate machine entries holding unattended licenses and disable the duplicates, leaving only the correct machine active. If none, toggle the Robot type from Unattended to Attended and back to force a refresh. Re-trigger the job after the heartbeat cycle.",mined,https://forum.uipath.com/t/robot-licensing-failed-there-are-no-available-licenses-on-the-server-1914/205496,
uipath-could-not-find-an-asset-with-this-name-error-code-1002,UiPath,config,Could not find an asset with this name. Error code: 1002,1002,,"Get Asset/Get Credential cannot find the named asset because it is in a different Orchestrator folder than the process, or the Robot lacks read permission on that folder.",,"Confirm the asset name matches exactly (case-sensitive). Check which folder the asset lives in vs the process's folder. Set the activity's Folder Path property to the correct path (use / for nested). For shared folders, ensure the Robot account has Viewer or higher permission.",mined,https://forum.uipath.com/t/could-not-find-an-asset-with-this-name-error-code-1002/397342,
uipath-add-queue-item-queue-does-not-exist-error-code-1002,UiPath,config,Add Queue Item: Queue does not exist. Error code: 1002,1002,,"The Add Queue Item activity references a queue name not in the Orchestrator folder the Robot runs under, often after a Classic-to-Modern folder migration.",,"Verify the queue exists in the expected folder. In Studio, set the activity's Orchestrator Folder Path to the exact folder where the queue is defined. Confirm the Robot account has permission to that folder. Republish after correcting folder settings.",mined,https://forum.uipath.com/t/add-queue-item-queue-does-not-exist-error-code-1002/276317,
uipath-no-connection-could-be-made-because-the-target-machine-ac,UiPath,connectivity,No connection could be made because the target machine actively refused it,,,"The Robot service (Service Mode) cannot reach the Orchestrator HTTPS endpoint because the machine uses an unconfigured proxy, or port 443 is firewall-blocked.",,"Verify the Orchestrator URL is reachable from the machine via a browser and that outbound 443 is open. If behind a proxy, add proxy settings to uipath.config under %ProgramFiles%\UiPath\Studio\. Restart the UiPath Robot Service, then reconnect from the Assistant.",mined,https://forum.uipath.com/t/no-connection-could-be-made-connecting-uipath-assistant-to-the-orchestrator-because-the-target-machine-actively-refused-it/502999,
uipath-cannot-create-unknown-type-http-schemas-uipath-com-workfl,UiPath,version,Cannot create unknown type '{http://schemas.uipath.com/workflow/activities}ReadRange',,,The workflow references the ReadRange (or other Excel/Mail/PDF) activity but the corresponding activities package is missing or not deployed on the Robot machine.,,"In Studio, open Manage Packages and confirm UiPath.Excel.Activities is installed and current. When publishing, ensure dependent packages are in the Orchestrator NuGet feed or the Robot's local package folder. On the Robot, clear the .nuget cache (C:\Users\<user>\.nuget\packages) to force a fresh download. Re-run.",mined,https://forum.uipath.com/t/message-cannot-create-unknown-type-http-schemas-uipath-com-workflow-activities-readrange/126140,
uipath-could-not-load-file-or-assembly-uipath-system-activities-,UiPath,version,"Could not load file or assembly 'UiPath.System.Activities, Version=23.4.2.0'",,23.4.0,"Studio 23.4.0 had a packaging defect where published .nupkg files listed incorrect runtime dependencies in the .nuspec, so the Robot fails to resolve UiPath.System.Activities at execution.",,"Downgrade Studio to 22.10.7 and republish. Or extract the .nupkg, correct the .nuspec dependency entries to the 22.10.7 format, repack, and re-upload. Add the UiPath Official NuGet feed to NuGet.config so the Robot can resolve packages. Upgrade past 23.4.0 once verified.",mined,https://forum.uipath.com/t/issue-with-2023-4-0-unable-to-run-code-on-robot-machine-could-not-load-file-or-assembly-uipath-system-activities-version-23-4-2-0/540352,
uipath-remoteexception-could-not-load-file-or-assembly-projectna,UiPath,version,RemoteException: Could not load file or assembly '{ProjectName}'. The system cannot find the file specified,,,"The Robot machine runs an older UiPath version than the one used to publish, so it cannot resolve the project assembly or its dependencies from the NuGet cache.",,"Upgrade the Robot/Assistant to the same version used in Studio. Clear the Robot's NuGet cache (C:\Users\<account>\.nuget\packages) and re-trigger so dependencies re-download. If the package relies on custom libraries, ensure those .nupkg are in the Orchestrator feed. Confirm the process version points to the correct package.",mined,https://forum.uipath.com/t/robot-failing-when-running-in-orchestrator-remoteexception-wrapping-system-io-filenotfoundexception/500855,
uipath-the-type-initializer-for-uipath-nuget-uipathutils-threw-a,UiPath,config,The type initializer for 'UiPath.NuGet.UiPathUtils' threw an exception,,,"The NuGet.Config in the Windows system profile (used by the Robot service account) is missing or malformed, so the Robot cannot initialise its NuGet resolver at job start.",,"Go to C:\Windows\System32\config\systemprofile\AppData\Roaming\NuGet (or SysWOW64 for 32-bit). Verify NuGet.Config begins with a valid XML declaration. If absent or corrupt, copy a valid one from a user profile or recreate it with the correct feeds. Restart the UiPath Robot Service and re-run.",mined,https://forum.uipath.com/t/the-type-initializer-for-uipath-nuget-uipathutils-threw-an-exception/307310,
uipath-535-5-7-3-authentication-unsuccessful,UiPath,auth,535: 5.7.3 Authentication unsuccessful,,,"UiPath.Mail.Activities above 1.9.5 changed SMTP password transmission to SecureString, rejected by mail servers that do not support secure auth on the configured port/TLS.",,"In Send SMTP Mail Message, try port 587 with SecureConnection 'Auto', or port 25 with 'None'. If using a credential asset, pass the plain-text password. Downgrade UiPath.Mail.Activities to 1.9.5 as a stable workaround, or upgrade to 1.12.2+. Ensure the mail server (Exchange/O365) allows Basic Auth or App Passwords.",mined,https://forum.uipath.com/t/smtp-authentication-error-after-version-1-9-5-uipath-mail-activities/329417,
uipath-you-are-not-authenticated,UiPath,auth,You are not authenticated,,,The OAuth2 bearer token used for Orchestrator API calls (via HTTP Request or Start Job) has expired or was generated with incorrect client credentials.,,"Re-generate the access token from the identity token endpoint with valid client_id/client_secret from your Orchestrator External Application. Confirm grant_type 'client_credentials' and correct scope. In Swagger/Postman, click Authorize again. For long automations, refresh the token before its ~1-hour expiry.",mined,https://forum.uipath.com/t/orchestrator-api-you-are-not-authenticated/207765,
uipath-businessruleexception-is-ambiguous-between-uipath-framewo,UiPath,version,BusinessRuleException is ambiguous between UiPath.Framework.Activities and UiPath.Core,,,"Both UiPath.System.Activities and an older UiPath.Framework.Activities are referenced, each exporting BusinessRuleException, causing an ambiguous-reference compile error in Throw activities.",,"In Manage Packages, remove the legacy UiPath.Framework.Activities if unused. In Throw/Catch activities, fully qualify the type as UiPath.Core.BusinessRuleException. Run Analyze Project to confirm no remaining ambiguity. Republish after clearing the old package.",mined,https://forum.uipath.com/t/new-businessruleexception-not-working/52457,
uipath-remoteexception-job-stopped-with-an-unexpected-exit-code-,UiPath,other,RemoteException: Job stopped with an unexpected exit code: 0xC0000005,0xC0000005,,"An access-violation crash, most commonly from a version mismatch between the UiPath Excel activities package and the locally installed Microsoft Excel.",,"In Studio, open Manage Packages and downgrade UiPath.Excel.Activities to a version compatible with your Excel (e.g. 2.8.x to 2.5.x/2.6.x). Re-publish and re-run. If it persists, confirm antivirus/firewall is not blocking UiPath robot processes.",mined,https://forum.uipath.com/t/remoteexception-wrapping-system-exception-job-stopped-with-an-unexpected-exit-code-0xc0000005/173595,
uipath-xamlobjectwriterexception-cannot-create-unknown-type-acti,UiPath,version,XamlObjectWriterException: Cannot create unknown type (activity),,,The Robot/Orchestrator runtime runs an older activity package that does not recognise activity types from the newer package used at development time.,,"Align Studio, Robot, and Orchestrator on compatible versions. In Studio's Manage Packages, downgrade UiPath.UIAutomation.Activities and UiPath.System.Activities to versions the Orchestrator supports, re-publish, and re-trigger. If already aligned, clear the Robot's NuGet cache (%userprofile%\.nuget\packages\) to force a fresh download.",mined,https://forum.uipath.com/t/run-from-orchestrator-cannot-create-unknown-type-at-system-xaml/241073,
uipath-the-given-key-was-not-present-in-the-dictionary,UiPath,schema,The given key was not present in the dictionary,,,"Code or a queue handler reads a dictionary/queue-item field by a key that does not exist at runtime — misspelled, wrong case, or never populated.",,"Guard access with ContainsKey (If: myDict.ContainsKey(""KeyName"")) and handle the missing case. Verify exact key names against the queue item schema. Wrap access in Try-Catch on KeyNotFoundException to log the missing key. For REFrameworks, confirm SpecificContent fields are populated before Process Transaction.",mined,https://forum.uipath.com/t/the-given-key-was-not-present-in-the-dictionary/17505,
uipath-could-not-find-file-nuget-packages-main-xaml,UiPath,config,Could not find file ...\.nuget\packages\...\Main.xaml,,,"On non-persistent VDI/VM environments the robot's NuGet cache is wiped on logoff, so later Orchestrator-triggered runs cannot find the unpacked .xaml files.",,"Confirm by logging off and back on and checking the path. If the cache clears on logoff the image is non-persistent — have IT persist the profile or redirect the NuGet folder to a persistent drive. Short term, run the Robot service under a Windows service account to keep the cache alive. Verify project.json's 'main' points to Main.xaml.",mined,https://forum.uipath.com/t/system-exception-could-not-find-file-c-users-username-nuget-packages-project-name-project-version-lib-net45-main-xaml/502814,
zapier-response-payload-size-exceeded-maximum-allowed-payload-si,Zapier,other,Response payload size exceeded maximum allowed payload size (6291556 bytes),6291556,,"The error ""Response payload size exceeded maximum allowed payload size (6291556 bytes)"" fires when a single Zap step receives more than ~6 MiB of data from the connected app or step",https://automatelab.tech/blog/no-code/zapier-response-payload-size-exceeded-6291556-bytes/,,guide,,2026-05-17
zapier-trigger-partner-failure,Zapier,connectivity,Trigger partner failure,,,"The trigger app's API did not respond successfully within Zapier's polling window, due to an outage, quota, throttling, or auth issue on the partner side.",,"Wait for the next poll - Zapier retries and picks up missed records automatically. If it recurs, reconnect the app in the trigger step. Check the partner's status page. For persistent failures, simplify the trigger (fewer filter fields, smaller data sets).",mined,https://community.zapier.com/troubleshooting-99/trigger-partner-failure-21131,
zapier-invalid-api-response-got-a-result-missing-the-id-property,Zapier,schema,"Invalid API Response: Got a result missing the ""id"" property",,,Zapier's polling dedupe requires every object in a trigger's result array to include a top-level field named exactly 'id'; the API returned objects without one.,,"Switch the trigger to Code Mode and map an existing unique field to id, e.g. return results.map(r => ({ ...r, id: r.recordId })). If items are nested in an envelope, extract the array first. Or set a Deduplication Key in the trigger if the app supports it.",mined,https://community.zapier.com/general-discussion-13/invalid-api-response-got-a-result-missing-the-id-property-3102,
zapier-invalid-api-response-results-must-be-an-array,Zapier,schema,Invalid API Response: Results must be an array,,,"A polling trigger expected a bare array of items but the API returned a wrapper object (e.g. {""items"": [...]}) or undefined.",,"Switch the trigger to Code Mode and return just the array, e.g. return bundle.response.data.items. Always return an array even when empty (return [] not null). Re-test the trigger to confirm Zapier accepts the shape.",mined,https://community.zapier.com/general-discussion-13/invalid-api-response-results-must-be-an-array-error-10571,
zapier-task-timed-out-after-160-seconds,Zapier,timeout,Task timed out after 160 seconds,,,"A Zap step (commonly a Google Sheets lookup/update) exceeded Zapier's 160-second limit, usually because the target sheet is too large or complex.",,"Trim unused rows, remove volatile formulas (ARRAYFORMULA, IMPORTRANGE), and archive old data. Use a simple indexed search column (ID/email, not a formula). Consider Zapier Tables or a more targeted API call instead of a large Find/Update. Replay the failed run after simplifying.",mined,https://community.zapier.com/troubleshooting-99/how-to-troubleshoot-a-google-sheets-zap-error-task-timed-out-after-160-seconds-51498,
zapier-invalid-syntax-only-numeric-values-are-allowed,Zapier,schema,Invalid Syntax: Only numeric values are allowed,,,"Formatter's Number transform received a value with non-numeric characters such as a currency symbol, comma, or a line-item array.",,"Add a Formatter > Text > Replace step before the math step to strip the offending characters. If the input is a line-item array, add Formatter > Line-items > Line-item to Text first to flatten it, then map the cleaned value into the Number transform.",mined,https://help.zapier.com/hc/en-us/articles/29027034278541-Formatter-error-Invalid-Syntax-Only-numeric-values-are-allowed,
zapier-formatter-error-failed-to-create-a-number-transform-the-a,Zapier,schema,"Formatter error: Failed to create a number transform; the app returned ""Invalid Syntax.""",,,"The Formatter Number transform received a value it cannot parse - an empty field, a text string, or mixed content from a prior step.",,"Open the failing run in history and inspect the exact value reaching the Formatter input. Add a Formatter > Text > Replace upstream to remove non-numeric characters. If the field is sometimes empty, add a Filter or Paths step to skip the Formatter when blank.",mined,https://community.zapier.com/troubleshooting-99/formatter-error-failed-to-create-a-number-transform-the-app-returned-invalid-syntax-17004,
zapier-failed-to-run-your-javascript-code-referenceerror-is-not-,Zapier,config,Failed to run your JavaScript code - ReferenceError: $ is not defined,,,"Code by Zapier runs in Node.js and does not include jQuery, so $ (and $.ajax) are undefined.",,Replace jQuery-style calls with native fetch: const resp = await fetch(url); const data = await resp.json();. Remove any require('jquery') - the environment cannot install packages.,mined,https://community.zapier.com/code-webhooks-52/failed-to-run-your-javascript-code-referenceerror-is-not-defined-24604,
zapier-referenceerror-fetch-is-not-defined,Zapier,config,ReferenceError: fetch is not defined,,,"The Code by Zapier step runs on a Node.js version older than 18, where global fetch does not exist.",,"Check the Node version in the Code step settings and switch to Node 18+ if available. If you cannot change the runtime, use the https built-in module, or move the request into a custom integration using z.request.",mined,https://community.zapier.com/code-webhooks-52/referenceerror-fetch-is-not-defined-23417,
zapier-error-you-did-not-define-output,Zapier,config,Error: You did not define `output`!,,,"The Code by Zapier JavaScript step finished without assigning the required 'output' variable, so Zapier has no data to pass on.",,"Set output to a plain object before the code ends, e.g. output = { result: myValue };. With async/await, use return { result: myValue } from the async function. With callbacks, ensure callback(null, { result }) is always reached, including error branches.",mined,https://community.zapier.com/code-webhooks-52/when-using-callback-output-not-defined-when-callback-not-called-5610,
zapier-referenceerror-input-data-is-not-defined,Zapier,config,ReferenceError: input_data is not defined,,,"In the Code by Zapier JavaScript step, mapped inputs are exposed as inputData (camelCase), not input_data; the wrong name throws.",,Rename references from input_data to inputData. Confirm field names match the Input Data panel exactly. Note the Python Code step uses input_data while the JavaScript step uses inputData.,mined,https://community.zapier.com/code-webhooks-52/referenceerror-input-data-is-not-defined-14999,
zapier-the-app-returned-contact-id-or-email-is-required-422,Zapier,schema,"The app returned ""Contact id or email is required"" (422)",422,,"A required identifier (contact ID or email) was empty or unmapped in the action step, so the destination app rejected the request as unprocessable.",,Open the action and verify at least one required identifier has a non-empty mapped value. Check the Zap history data-in panel to confirm the mapped field has data for the failing record. Add a Filter before the action to halt when the identifier is blank.,mined,https://community.zapier.com/troubleshooting-99/activecampaign-error-the-app-returned-contact-id-or-email-is-required-422-29873,
zapier-status-code-400-bad-request,Zapier,schema,Status Code 400 Bad Request,400,,"The destination app rejected the request because a required field was missing, empty, or in an unrecognised format (e.g. a name in an email field).",,"Open the Zap history entry, click the failing action, and inspect Data In to find the bad value. Strip optional fields and test with required fields only to isolate the problem field. Add a Formatter to convert the value to the expected format. Re-enable optional fields one at a time.",mined,https://community.zapier.com/troubleshooting-99/google-sheets-status-code-400-bad-request-20303,
zapier-trigger-partner-failure-throttling,Zapier,rate-limit,Trigger partner failure (throttling),,,"The trigger app is rate-limiting or throttling Zapier's polling requests, causing the trigger poll to fail.",,"Wait for the throttling window to expire; Zapier catches up on the next successful poll. If persistent, reduce polling frequency (a plan with longer intervals) or switch to an instant webhook trigger if the app supports it. Contact the partner if the throttling seems unintended.",mined,https://community.zapier.com/troubleshooting-99/trigger-partner-failure-jotform-throttling-22335,
zapier-invalid-input-json-when-configuring-custom-request,Zapier,config,Invalid input JSON when configuring custom request,,,"Extra whitespace, a trailing comma, or an unescaped character in the JSON body of a Webhooks/HTTP action made the payload invalid before sending.",,Paste the JSON body into a validator (e.g. jsonlint.com) to find the syntax error. Remove leading/trailing whitespace and tabs in the field. Ensure dynamically mapped strings that may contain quotes are properly escaped. Save and re-test.,mined,https://community.zapier.com/troubleshooting-99/invalid-input-json-when-configuring-custom-request-28698,
zapier-this-auth-is-expired-please-reconnect-it-here,Zapier,auth,This auth is expired. Please reconnect it here.,,,"The OAuth token for a connected app expired or was revoked, so Zapier lost access to the third-party account.",,"Click the reconnect link, or go to My Apps, find the connection, and click Reconnect with valid credentials. After reconnecting, replay any held runs from Zap History.",mined,https://community.zapier.com/troubleshooting-99/salesforce-error-this-auth-is-expired-please-reconnect-it-here-39150,
zapier-usage-of-paths-is-not-allowed-for-your-current-plan,Zapier,config,Usage of Paths is not allowed for your current plan.,,,Paths is only available on Professional plans and above; enabling a Zap with a Paths step on Free/Starter triggers this error.,,"Upgrade to Professional or higher to use Paths permanently, or start Zapier's free 7-day Paths trial from inside the editor. If you cannot upgrade, replace Paths with individual Filter steps on separate Zaps.",mined,https://community.zapier.com/general-questions-3/usage-of-paths-is-not-allowed-for-your-current-plan-error-when-turning-on-zap-8363,
zapier-your-zap-would-not-have-continued-for-this-test-data,Zapier,config,Your Zap would not have continued for this test data.,,,"The sample data used during testing did not satisfy the Filter/Path condition, so the Zap would have stopped at that step.",,"Compare the filter conditions to the actual sample values - look for hidden spaces, text-vs-number mismatches, or '(missing value)' fields. If you changed the trigger, reload sample data and remap the filter fields. Use 'Contains' instead of 'Exactly matches' when formatting varies. Test with a live record.",mined,https://community.zapier.com/troubleshooting-99/your-zap-would-not-have-continued-for-this-test-data-if-this-was-unexpected-edit-or-modify-your-test-record-27982,
zapier-your-path-would-not-have-continued,Zapier,config,Your path would not have continued,,,"The data in a run did not meet a Paths branch condition, so execution stopped at that branch instead of continuing downstream.",,"Review the branch condition for hidden whitespace, case sensitivity, or array data needing flattening (Formatter > Utilities > Line Items to Text). Test Paths with a live run rather than in isolation. Add a catch-all 'else' path so runs are never silently dropped.",mined,https://community.zapier.com/troubleshooting-99/your-path-would-not-have-continued-help-please-23947,
zapier-error-from-slack-channel-not-found,Zapier,config,Error from Slack: channel_not_found,channel_not_found,,"Slack returned channel_not_found because the connected Zapier account is not in the target channel, the channel was renamed, or a username was passed instead of a channel/member ID.",,"Invite the Zapier bot/user to the channel with /invite @Zapier. For DMs, use the 'Find User by Username' action to get the member ID and map that, not the username. If the channel was renamed, update the field. For private channels, test with a live run.",mined,https://community.zapier.com/troubleshooting-99/failed-to-create-a-message-in-slack-error-from-slack-channel-not-found-22525,
zapier-oops-neither-you-nor-the-bot-are-in-the-selected-channel,Zapier,auth,Oops! Neither you nor the bot are in the selected channel,,,"Both the Zapier Slack bot and the authenticated Slack user are absent from the channel named in the action, so Slack rejects the request.",,"In Slack, open the target channel and type /invite @Zapier to add the bot. Ensure the account used to connect Slack in Zapier is also a member. Re-test after both are confirmed members.",mined,https://community.zapier.com/troubleshooting-99/error-when-adding-user-s-to-existing-slack-channel-oops-neither-you-nor-the-bot-are-in-the-selected-channel-46047,
zapier-there-was-an-error-writing-to-your-google-sheet-unable-to,Zapier,schema,There was an error writing to your Google sheet. Unable to parse range,,,"Google Sheets rejected the range because the sheet/spreadsheet title has a special character (often a colon), the worksheet was renamed after the Zap was built, or a frozen/hidden/protected row is targeted.",,"Remove colons and special characters from worksheet/spreadsheet titles. If renamed, reselect the spreadsheet and worksheet in the Zap and re-test. Unfreeze/unhide targeted rows/columns. Ensure at least one column value is populated before the Zap fires.",mined,https://help.zapier.com/hc/en-us/articles/25804519400461-Google-Sheets-error-There-was-an-error-writing-to-your-Google-Sheets-unable-to-parse-range,
zapier-google-sheets-error-could-not-find-the-selected-worksheet,Zapier,schema,Google Sheets error: Could not find the selected worksheets,,,"The Worksheet field needs a worksheet ID, not a name; when the name is passed dynamically Zapier cannot resolve it to a sheet.",,"Add a 'Google Sheets - Find Worksheet' action before the failing step and map its output (the worksheet ID) into the Worksheet field. Do not pass the worksheet name as a dynamic value. For static sheets, pick the worksheet from the dropdown.",mined,https://community.zapier.com/troubleshooting-99/google-sheets-error-could-not-find-the-selected-worksheets-41550,
zapier-webhooks-by-zapier-the-app-returned-forbidden-403,Zapier,auth,"Webhooks by Zapier: The app returned ""Forbidden"" (403)",403,,"The target server rejected the webhook with 403 because the API key/Bearer token or auth header is missing, wrong, or lacks permissions.",,Check the request headers and confirm the Authorization value is current and correctly formatted (e.g. Bearer <token>). Regenerate the key/token if rotated or revoked. Verify the endpoint URL and that the credential can access it. Re-test after updating.,mined,https://community.zapier.com/code-webhooks-52/failed-to-create-a-request-in-webhooks-by-zapier-the-app-returned-forbidden-http-status-code-403-26419,
zapier-sorry-that-is-too-many-emails-sent-please-try-mandrill-ma,Zapier,rate-limit,"Sorry! That is too many emails sent. Please try Mandrill, Mailgun, Gmail, or others for bulk email",,,"The Email by Zapier built-in action hit its account-wide hourly/daily cap (5/day free, 10/hour paid), which applies across all users on the account.",,"Switch from Email by Zapier to a dedicated email app (Gmail, Mailgun, Mailchimp Transactional) with higher volume. If low volume is fine, reduce trigger frequency or add a Filter to limit which records send. For teams, coordinate usage so one user does not exhaust the shared quota.",mined,https://help.zapier.com/hc/en-us/articles/23900889722765-Email-by-Zapier-error-Sorry-That-is-too-many-emails-sent-Please-try-Mandrill-Mailgun-Gmail-or-others-for-bulk-email,
zapier-gmail-error-quota-exceeded-for-quota-metric-queries-queri,Zapier,rate-limit,Gmail error: Quota exceeded for quota metric 'Queries' (Queries per minute per user),,,"Multiple Zaps firing simultaneously exceeded Google's per-user Gmail API quota, so Gmail rate-limits Zapier's requests.",,"Reduce the number of Gmail-triggered/action Zaps running concurrently and remove unnecessary Gmail steps. Replay throttled runs from Zap History after the per-minute quota resets (~60s). For sustained volume, use a Google Workspace account which has higher Gmail API limits than a personal account.",mined,https://help.zapier.com/hc/en-us/articles/28741574606093-Gmail-error-Quota-exceeded-for-quota-metric-Queries-and-limit-Queries-per-minute-per-user-of-service-gmail-googleapis-com-for-consumer,
zapier-the-app-did-not-respond-in-time-it-may-or-may-not-have-co,Zapier,timeout,The app did not respond in time. It may or may not have completed successfully.,,,"The connected app took longer than Zapier's ~30s execution window to respond, typically when querying a large dataset or uploading a large file.",,"For triggers, add filters to reduce returned data; for actions, split the work into smaller steps. Reconnect the app account and re-test after a few minutes, since transient slowdowns self-resolve. Enable Autoreplay so Zapier retries the timed-out step automatically.",mined,https://community.zapier.com/how-do-i-3/zap-problem-the-app-did-not-respond-in-time-6106,
zapier-this-app-step-was-throttled-by-zapier,Zapier,rate-limit,This [App] step was throttled by Zapier,throttled,,Zapier flood-protection triggered because the Zap fired too many runs in a short window (e.g. 100+ tasks queued at once).,,"Add a 'Delay After Queue' step before the throttled action to spread requests. On paid plans, adjust the flood-protection limit in the Zap settings. Replay held runs from Task History once the window passes; for high-volume triggers, split across Zaps or use Looping with a delay.",mined,https://help.zapier.com/hc/en-us/articles/8496038845325-Fix-Throttled-by-Zapier-or-Zapier-has-blocked-this-task-errors-in-Zaps,
zapier-this-app-step-was-held-because-you-ve-met-your-plan-limit,Zapier,config,This [App] step was held because you've met your plan limits,,,"The account consumed its monthly task allowance (or the plan does not support multi-step Zaps), so Zapier pauses further runs.",,"In Settings > Billing, upgrade to a higher task limit or enable pay-per-task. Held runs are not lost — replay them from Zap History once tasks are available. If tasks show available but the error persists, the Zap may use a premium app not in your plan; verify app-tier eligibility.",mined,https://community.zapier.com/how-do-i-3/tasks-are-available-but-getting-limit-error-step-was-held-because-you-ve-met-your-plan-limit-2921,
zapier-halted-exception-nothing-could-be-found-for-the-search,Zapier,schema,Halted exception. Nothing could be found for the search,halt,,"A Search action returned zero results, which Zapier treats as a hard halt unless configured to continue on empty results.",,"In the search action's Configure tab, enable 'Should this step be considered a success when nothing is found?' (or the 'Create record if not found' option). Verify the lookup value matches exactly (spaces, case, numeric vs string). For legitimately-absent data, add a Paths or Filter step to handle the empty branch.",mined,https://community.zapier.com/troubleshooting-99/google-sheets-error-halted-exception-nothing-could-be-found-for-the-search-40341,
zapier-authentication-failed-the-app-returned-invalid-api-key,Zapier,auth,"Authentication failed: The app returned ""Invalid API Key""",,,"The stored API key is wrong, expired, or lacks the permissions required by the action.",,"In My Apps, reconnect the affected app and re-enter the key directly from the source app (copy-paste to avoid stray spaces). Confirm the key was not rotated or revoked and that its scopes match the action (read-write vs read-only). If a security/firewall plugin is active (common on WordPress), temporarily disable it to rule out request blocking.",mined,https://community.zapier.com/troubleshooting-99/mycred-error-authentication-failed-the-app-returned-invalid-api-key-50497,
n8n-requested-version-20250401-is-not-active,n8n,auth,Requested version 20250401 is not active,20250401,,"Every n8n LinkedIn node call started returning 426 - {""status"":426,""code"":""NONEXISTENT_VERSION"",""message"":""Requested version 20250401 is not active""} in mid-April 2026 because the node hard-codes a LinkedIn-Version...",https://automatelab.tech/blog/no-code/n8n-linkedin-nonexistent-version-20250401-fix/,,guide,,2026-05-25
n8n-quota-exceeded,n8n,auth,Quota exceeded,,,"n8n's Google Sheets node returns 429 Quota exceeded once a workflow exceeds 60 reads or 60 writes per minute per Google user; batch the writes, throttle with the Wait node, and stop sharing the n8n Cloud OAuth client",https://automatelab.tech/blog/no-code/n8n-google-sheets-quota-exceeded-fix/,,guide,,2026-05-13
n8n-econnrefused,n8n,connectivity,ECONNREFUSED,,,An ECONNREFUSED error from an n8n HTTP Request node means the target host is reachable on the network but is actively refusing the TCP connection on that port,https://automatelab.tech/blog/no-code/n8n-econnrefused-http-fix/,,guide,,2026-05-05
n8n-problem-in-node-http-request-timeout-of-300000ms-exceeded,n8n,timeout,Problem in node 'HTTP Request' - timeout of 300000ms exceeded,ECONNABORTED,,The target API did not respond within n8n's default 5-minute (300000 ms) HTTP timeout window.,,"Open the HTTP Request node, click 'Add Option', and set a higher 'Timeout' value in milliseconds. If the API is genuinely slow, split large payloads into smaller batches with a Loop node so each request completes faster. On self-hosted instances set N8N_HTTP_REQUEST_TIMEOUT to override the global default.",mined,https://community.n8n.io/t/http-request-timeout-of-300000ms-exceeded-can-i-extend-timeout/32372,
n8n-authorization-failed-please-check-your-credentials,n8n,auth,Authorization failed - please check your credentials,,,"The credential attached to the HTTP Request node is missing, expired, or not sent in the header format the API requires.",,"Confirm the token/key is still valid with the provider. Verify the node's authentication type matches what the API expects (Header Auth, Bearer, Basic). If the credential test passes but execution fails, inject the header manually in the Headers section to bypass the credential layer. Check the raw response body for a more specific message.",mined,https://community.n8n.io/t/authorization-failed-please-check-your-credentials/79534,
n8n-request-failed-with-status-code-401,n8n,auth,Request failed with status code 401,401,,The target API rejected the request because valid authentication credentials were absent or invalid in the headers.,,"Verify the API key/token is correct and not revoked. Ensure the header name matches the API spec (Authorization: Bearer vs x-api-key). For OAuth2, refresh the token and re-save the credential. On self-hosted n8n, confirm DB env vars are set so the internal auth layer initialises.",mined,https://community.n8n.io/t/request-failed-with-status-code-401/21605,
n8n-axioserror-request-failed-with-status-code-429,n8n,rate-limit,AxiosError: Request failed with status code 429,429,,The destination API returns 429 because n8n is sending requests faster than its rate limit allows.,,"Add a Wait node between iterations to space out requests. Enable batching in the HTTP Request node Options with a small batch size. Check your API tier - some providers lower limits when balance drops. For webhook-triggered flows, add queue or debounce logic to avoid bursts.",mined,https://community.n8n.io/t/http-request-constantly-returns-response-code-429-axioserror/222258,
n8n-request-failed-with-status-code-403,n8n,auth,Request failed with status code 403,403,,"The server refuses to authorise the request, commonly because n8n's IP or user-agent is blocked by a WAF/Cloudflare or the API key lacks scope.",,"If the endpoint is behind Cloudflare, add CF-Access-Client-Id/Secret headers or whitelist n8n's IP. Verify the key has the required scopes. Add a realistic User-Agent header to bypass basic bot-detection. On self-hosted n8n, confirm the credential was not overwritten after an upgrade.",mined,https://community.n8n.io/t/http-request-blocked-by-cloudflare-403-forbidden-just-a-moment-page/188889,
n8n-socket-hang-up,n8n,connectivity,socket hang up,ECONNRESET,,"The remote server closed the TCP connection mid-transfer, often when n8n is behind a corporate proxy or the API drops long-lived connections.",,"Behind a corporate proxy, set HTTPS_PROXY/HTTP_PROXY and bootstrap global-agent so Node routes through the proxy; set NO_PROXY for localhost. If intermittent, enable 'Retry On Fail' on the node. On Windows installs, use a .env file with dotenv-cli rather than shell 'set' so variables persist.",mined,https://community.n8n.io/t/http-request-node-fails-with-socket-hang-up-behind-corporate-proxy-windows-npm-setup/91957,
n8n-self-signed-certificate,n8n,connectivity,self signed certificate,DEPTH_ZERO_SELF_SIGNED_CERT,,The target HTTPS endpoint presents a self-signed certificate that n8n's Node TLS layer rejects because it is not in a trusted CA chain.,,"In the HTTP Request node Options, toggle on 'Ignore SSL Issues'. For nodes lacking that option, set NODE_TLS_REJECT_UNAUTHORIZED=0 as a temporary, private-network-only workaround. For a proper fix, point NODE_EXTRA_CA_CERTS (or SSL_CERT_FILE) at your internal CA bundle.",mined,https://community.n8n.io/t/node-http-reqeust-returns-depth-zero-self-signed-cert/19531,
n8n-self-signed-certificate-in-certificate-chain,n8n,connectivity,self-signed certificate in certificate chain,SELF_SIGNED_CERT_IN_CHAIN,,An intermediate certificate in the server's TLS chain is self-signed or issued by a private CA n8n does not trust.,,"Enable 'Ignore SSL Issues' in the HTTP Request node, or 'Allow Unauthorized Certificates' for DB/SMTP nodes. On Docker, mount the internal CA cert and set NODE_EXTRA_CA_CERTS=/path/to/ca.crt in the container. Avoid global NODE_TLS_REJECT_UNAUTHORIZED=0 in production - scope the bypass to the credential.",mined,https://community.n8n.io/t/self-signed-certificate-in-certificate-chain/55104,
n8n-unable-to-verify-the-first-certificate,n8n,connectivity,unable to verify the first certificate,UNABLE_TO_VERIFY_LEAF_SIGNATURE,,The server's TLS chain is incomplete - the leaf cannot be traced to a trusted root because intermediate certificates are missing.,,Fix is server-side: configure the web server to serve the full chain including intermediates. Temporarily enable 'Ignore SSL Issues' in the node to confirm the cause. Verify with 'openssl s_client -connect host:443' and look for 'verify error'.,mined,https://community.n8n.io/t/unable-to-verify-the-first-certificate-n8n/32686,
n8n-getaddrinfo-enotfound,n8n,connectivity,getaddrinfo ENOTFOUND,ENOTFOUND,,DNS resolution failed - the hostname cannot be resolved to an IP from within the n8n runtime.,,"Confirm the hostname is correct and reachable from the n8n host (nslookup/dig). For Docker, check the container's DNS config or use host networking. For internal hostnames, add to /etc/hosts or use the IP directly. On n8n Cloud, the domain must be publicly resolvable - .local hostnames never resolve.",mined,https://community.n8n.io/t/enotfound-error-in-n8n-http-request-node/69973,
n8n-maximum-number-of-redirects-exceeded,n8n,connectivity,Maximum number of redirects exceeded,,,"The HTTP Request node followed more redirect hops than its limit, often from a redirect loop caused by mismatched OAuth signing URLs or proxy misconfiguration.",,"Ensure the URL used to build auth headers exactly matches the request URL (a mismatch triggers an auth-failure redirect loop). In Options, set 'Follow Redirect' false and 'Ignore Response Code' true to capture the raw redirect for debugging. Check that any proxy is not issuing redirects back to n8n.",mined,https://community.n8n.io/t/http-request-node-gives-maximum-number-of-redirects-exceeded-error/14800,
n8n-payloadtoolargeerror-request-entity-too-large,n8n,config,PayloadTooLargeError: request entity too large,413,,"The incoming webhook payload exceeds n8n's configured body size limit, so the HTTP layer rejects it before the workflow runs.",,"Set N8N_PAYLOAD_SIZE_MAX to a higher value in MB (e.g. 64) and restart. For large binary uploads also set N8N_DEFAULT_BINARY_DATA_MODE=filesystem. Behind nginx, raise client_max_body_size too. In Docker, add the env var to compose.",mined,https://community.n8n.io/t/payloadtoolargeerror-request-entity-too-large-for-100kb-request/7775,
n8n-workflow-webhook-error-workflow-could-not-be-started,n8n,config,Workflow Webhook Error: Workflow could not be started!,,,"The production webhook URL was called but the workflow is not active, or WEBHOOK_URL points to the wrong host so n8n cannot match the request to a registered webhook.",,"Confirm the workflow is saved AND toggled active (required for production URLs). Set WEBHOOK_URL (or N8N_HOST + N8N_PROTOCOL) to the externally reachable base URL. Behind a reverse proxy, set N8N_TRUST_PROXY=true. Deactivate and reactivate to force webhook re-registration.",mined,https://community.n8n.io/t/critical-n8n-cloud-production-webhooks-fail-with-workflow-could-not-be-started/200534,
n8n-request-failed-with-status-code-422,n8n,schema,Request failed with status code 422,422,,The API rejected the request because the body or query params failed validation - commonly an expression resolving to the wrong type or an empty value.,,"Inspect the full error response body for the field-level message. Ensure expressions resolve to the expected type; wrap with String(), Number(), or JSON.parse() as needed. For GET requests, make sure no body is sent (older HTTP node versions attached one - upgrade). Use the 'Send Body' toggle to control inclusion.",mined,https://community.n8n.io/t/http-get-request-incorrectly-sends-body-causing-422-error-with-fal-ai/192506,
n8n-invalid-grant-token-has-been-expired-or-revoked,n8n,auth,invalid_grant: Token has been expired or revoked,,,"A Google OAuth2 refresh token is revoked, or the app is in 'Testing' status which limits test-user tokens to a 7-day lifespan.",,"Open the failing credential and click 'Reconnect' for a fresh token. To stop recurrence, set the Google OAuth consent screen to 'In production' (or 'Internal' for Workspace). For non-Google providers, ensure the Auth URI includes any required offline-access parameter.",mined,https://community.n8n.io/t/firebase-oauth2-token-has-been-expired-or-revoked/17099,
n8n-the-access-token-is-invalid-or-has-expired,n8n,auth,The access token is invalid or has expired,,,The OAuth2 HTTP node cannot auto-refresh because the API never issued a refresh token during the initial authorization.,,"Edit the credential and add the offline-access parameter to the Auth URI (for Google: access_type=offline&prompt=consent), then re-authorise to get a refresh token. If the API has no refresh tokens, store the token externally and inject it via an expression before each request.",mined,https://community.n8n.io/t/the-access-token-is-invalid-or-has-expired/11229,
n8n-error-unknown-top-level-item-key-paireditems-item-0,n8n,schema,ERROR: Unknown top-level item key: pairedItems [item 0],,,"A node (often Google Sheets) emits an invalid 'pairedItems' key that the Code node's strict validator rejects (only json, binary, error, pairedItem, index are allowed).",,Add a Code node before the failing node to delete the key: for (const item of $input.all()) { delete item.pairedItems; } return $input.all();. Permanently fix by upgrading to n8n v1.18.1+ which resolves the upstream Google Sheets bug.,mined,https://community.n8n.io/t/error-unknown-top-level-item-key-paireditems-item-0/33536,
n8n-no-data-found-for-item-index-1,n8n,other,"No data found for item-index: ""1""",,,"A downstream node references a previous node with fewer items using legacy $node[] syntax, so index 1+ does not exist in the upstream output.",,"Replace $node[""NodeName""].json[""field""] with $item(0).$node[""NodeName""].json[""field""] to pin to a specific item, or use $item($itemIndex) to match each iteration. Better, use the modern $(""NodeName"").item.json.field syntax which handles pairedItem linking automatically.",mined,https://community.n8n.io/t/no-data-found-for-item-index-1/4626,
n8n-this-getworkflowstaticdata-is-not-a-function,n8n,other,this.getWorkflowStaticData is not a function,,1.86.0,The Code node does not expose getWorkflowStaticData on 'this'; it is only available as the global helper $getWorkflowStaticData.,,Replace this.getWorkflowStaticData('global') with const staticData = $getWorkflowStaticData('global'); in your Code node. See the n8n Code node reference under 'Built-in methods and variables'.,mined,https://community.n8n.io/t/code-node-this-getworkflowstaticdata-is-not-a-function-on-v1-86-0-docker-on-windows-persists-after-reinstall/99137,
n8n-n8n-may-have-run-out-of-memory-while-running-this-execution,n8n,other,n8n may have run out of memory while running this execution,,,"The Node.js process exhausts heap memory, often from processing large binary files or accumulating many large items across nodes.",,"Filter or project only needed fields early. Process binary data in chunks/streams rather than whole. Split monolithic workflows into sub-workflows to bound per-execution memory. Self-hosted: raise the heap with NODE_OPTIONS=--max-old-space-size=4096; on Cloud, upgrade to a higher-memory plan.",mined,https://community.n8n.io/t/error-execution-stopped-at-this-node-may-have-run-out-of-memory/28362,
n8n-the-requested-webhook-is-not-registered,n8n,config,The requested webhook is not registered,,,"The incoming request's HTTP method does not match the Webhook node's configured method, or the workflow is inactive while the production URL is called.",,"Confirm the caller uses the same HTTP method set in the Webhook node. Activate the workflow before using the /webhook/ production URL (the /webhook-test/ URL only works with the canvas open and 'Listen for test event' clicked). After a path rename, deactivate, save, then reactivate to re-register.",mined,https://community.n8n.io/t/webhook-error-the-requested-webhook-is-not-registered/15688,
n8n-connect-econnrefused-127-0-0-1-5432,n8n,connectivity,connect ECONNREFUSED 127.0.0.1:5432,,,"The Postgres node cannot reach the database, typically because n8n is in Docker and the host is set to localhost/127.0.0.1 instead of the container name.",,"In Docker Compose, set the credential host to the Postgres service name (e.g. postgres), not localhost. Confirm port 5432 is exposed and pg_hba.conf/postgresql.conf allow remote connections from the n8n network. If using an SSH tunnel, upgrade to n8n v1.99.0 for the connection-pool fix.",mined,https://community.n8n.io/t/postgres-node-connection-refused-error/82137,
n8n-unable-to-parse-range-sheet1-a-d1-undefined1,n8n,schema,Unable to parse range: Sheet1!A:D1:undefined1,,0.84.3,A regression in n8n v0.84.3 caused the Google Sheets Append operation to build malformed range strings with undefined suffixes.,,"Upgrade to n8n v0.84.4 or later which contains the patch. If you cannot upgrade immediately, replace the Append operation with a raw HTTP Request to the Sheets API using a correctly formed A1-notation range.",mined,https://community.n8n.io/t/google-sheet-400-error-unable-to-parse-range/2427,
n8n-no-columns-found-in-google-sheet-all-rows-will-be-appended,n8n,config,No columns found in Google Sheet. All rows will be appended,,,"The Google Sheets node needs schema discovery at design time, but when the spreadsheet ID is a runtime expression it cannot read column headers during setup.",,"Pin sample data to the trigger so the Sheets node can resolve the expression and detect columns. Alternatively hard-code a representative spreadsheet ID during setup, load the schema, then switch the field back to an expression. Ensure the sheet has a populated header row in row 1.",mined,https://community.n8n.io/t/google-sheets-append-or-update-row-fails-when-documentid-is-dynamic-columns-exist-at-runtime-but-not-in-setup/236727,
n8n-this-model-s-maximum-context-length-is-65536-tokens-however-,n8n,other,"This model's maximum context length is 65536 tokens. However, you requested 73149 tokens.",,,"The AI Agent/Chat Model node sends a request over the model's token limit, commonly because a shared Window Buffer Memory node accumulates all users' history under one session ID.",,Set a unique session ID per user (e.g. {{ $json.subscriber_id }}). Reduce the memory node's 'Context Window Length' to 10-15 messages. Truncate or summarise large document content before the model call. Or switch to a larger-context model.,mined,https://community.n8n.io/t/exceed-maximum-context-length/85711,
n8n-bad-request-please-check-your-parameters-input-tokens-exceed,n8n,other,"Bad request, please check your parameters. Input tokens exceed the configured limits.",,,"The OpenAI node's memory accumulates history across users sharing one session ID, growing a single context window beyond the API token ceiling.",,Assign a unique session ID per user (e.g. {{ $json.userId }}) in the memory node. Lower the history limit to 10-15 entries. Replace in-memory storage with an external DB (e.g. Supabase) for per-session isolation. Add a summarisation step if the payload itself is large.,mined,https://community.n8n.io/t/bad-request-error-input-tokens-exceed-configured-limits-in-openai-node/273096,
n8n-connection-refused-on-ssh-tunnelled-postgres-127-0-0-1-34827,n8n,connectivity,Connection refused on SSH-tunnelled Postgres (127.0.0.1:34827),,1.78.1,n8n v1.78.1 introduced connection pooling with a hard maxConnections default that causes SSH-tunnelled Postgres connections to time out and refuse in looping workflows.,,"Upgrade to n8n v1.99.0 which contains the SSH-tunnel connection-pool fix. On earlier versions, raise the SSH tunnel idle timeout and reduce parallelism in loops that hit Postgres so the pool is not exhausted.",mined,https://community.n8n.io/t/postgres-connection-refused-read-econnreset/60596,
n8n-there-was-an-error-initializing-db-relation-credentials-enti,n8n,schema,"There was an error initializing DB: relation ""credentials_entity"" does not exist",,,"n8n's Postgres migrations run against the wrong schema when DB_POSTGRESDB_SCHEMA is set to anything other than 'public', leaving tables uncreated.",,"Set DB_POSTGRESDB_SCHEMA=public or remove the variable so n8n uses the default. If you need schema isolation, create it first and grant the user full privileges before starting n8n. After fixing, wipe the database and let n8n re-run migrations cleanly.",mined,https://community.n8n.io/t/docker-there-was-an-error-initializing-db-relation-credentials-entity-does-not-exist/14157,
n8n-function-gen-random-uuid-does-not-exist,n8n,schema,function gen_random_uuid() does not exist,,1.121.3,"A migration calls gen_random_uuid(), which requires the pgcrypto extension, but that extension is absent on the Postgres database.",,"Connect as a superuser and run: CREATE EXTENSION IF NOT EXISTS pgcrypto; then restart n8n so the migration completes. For Kubernetes, add this to the postgres init script so it runs automatically on new clusters.",mined,https://github.com/n8n-io/n8n-hosting/issues/54,
n8n-there-was-an-error-running-database-migrations-queryfaileder,n8n,schema,"There was an error running database migrations QueryFailedError: syntax error at or near "":""",,,"A previously interrupted migration left the migrations table inconsistent, so the next startup's migration runner emits a Postgres syntax error.",,"Export all workflows and credentials with the n8n CLI (n8n export:workflow --backup, n8n export:credentials --decrypted) first. Drop and recreate the database, let n8n run a clean migration, then re-import. Do not hand-patch the migrations table unless you know the exact failed step.",mined,https://community.n8n.io/t/error-there-was-an-error-running-database-migrations-queryfailederror-syntax-error-at-or-near/31553,
n8n-cannot-drop-column-role-of-table-user-because-other-objects-,n8n,schema,"cannot drop column role of table ""user"" because other objects depend on it",,1.111.0,"A migration tries to drop the legacy 'role' column but Postgres blocks the DROP because a constraint or index still references it, usually from a schema that diverged during an earlier upgrade.",,"Downgrade to the last working version before retrying the upgrade. Identify dependents with SELECT conname FROM pg_constraint WHERE conrelid='public.user'::regclass, drop them with ALTER TABLE public.user DROP CONSTRAINT <name>, then restart n8n to retry. Watch the GitHub issue for an official patch.",mined,https://github.com/n8n-io/n8n/issues/19364,
n8n-sqlite-busy-database-is-locked,n8n,config,SQLITE_BUSY: database is locked,SQLITE_BUSY,,SQLite allows only one writer at a time; concurrent workflow executions writing simultaneously cause SQLITE_BUSY.,,"Migrate to PostgreSQL for any instance running concurrent workflows - SQLite is for single-user dev only. If migration must wait, set EXECUTIONS_PROCESS=main to serialise executions. On NAS/Azure file shares, move the SQLite file to local container storage (remote mounts have poor SQLite locking).",mined,https://community.n8n.io/t/sqlite-busy-database-is-locked/7188,
n8n-mismatching-encryption-keys-the-encryption-key-in-the-settin,n8n,config,Mismatching encryption keys. The encryption key in the settings file does not match the N8N_ENCRYPTION_KEY env var.,,,"n8n auto-generated a random encryption key on first startup and stored it in ~/.n8n/config, but a different N8N_ENCRYPTION_KEY was later set in the environment.",,"Retrieve the original key from the container (docker exec -it <c> cat /home/node/.n8n/config) and set that exact value as N8N_ENCRYPTION_KEY in compose. To start fresh instead, remove containers and the data volume, then set the desired key before n8n first writes config. Never change the key after credentials are saved.",mined,https://community.n8n.io/t/self-hosted-ai-starter-kit-error-message-mismatching-encryption-keys/56652,
n8n-credentials-could-not-be-decrypted-the-likely-reason-is-that,n8n,auth,"Credentials could not be decrypted. The likely reason is that a different ""encryptionKey"" was used to encrypt the data.",,,"A new container or recreated data volume started without the original N8N_ENCRYPTION_KEY, so n8n generated a new key that cannot decrypt existing credentials.",,"Always pin N8N_ENCRYPTION_KEY explicitly in compose before first startup and keep it across upgrades. If the original key is lost, credentials are unrecoverable - delete and recreate them. In queue mode, every main/worker/webhook container must share the identical key. Persist the /home/node/.n8n volume.",mined,https://community.n8n.io/t/credentials-could-not-be-decrypted-the-likely-reason-is-that-a-different-encryptionkey-was-used-to-encrypt-the-data-docker/158793,
n8n-missing-encryption-key-worker-started-without-the-required-n,n8n,config,Missing encryption key. Worker started without the required N8N_ENCRYPTION_KEY,,,"In queue mode, worker containers must have N8N_ENCRYPTION_KEY set explicitly; they do not read the main instance's config file.",,"Add N8N_ENCRYPTION_KEY=<same value as main> to every worker service in compose. Retrieve it from the main instance if not set explicitly (docker exec <main> cat /home/node/.n8n/config). Restart workers. If using N8N_ENCRYPTION_KEY_FILE, read the file in an entrypoint and export it as N8N_ENCRYPTION_KEY due to a known bug.",mined,https://community.n8n.io/t/n8n-worker-get-error-n8n-encryption-key-var-after-update-new-version/35878,
n8n-unable-to-connect-to-redis-after-trying-to-connect-for-10s,n8n,connectivity,Unable to connect to Redis after trying to connect for 10s,,,"The n8n main/worker cannot reach Redis, commonly from an incorrect QUEUE_BULL_REDIS_HOST, a Docker network mismatch, or TLS issues.",,"Verify QUEUE_BULL_REDIS_HOST/PORT match the Redis service name and port and that both containers share a network. For TLS Redis, mount the CA cert and set QUEUE_BULL_REDIS_TLS=true with cert paths. If Redis has idle timeouts, set QUEUE_BULL_REDIS_TIMEOUT_THRESHOLD below the server timeout to reconnect proactively.",mined,https://community.n8n.io/t/n8n-queue-mode-with-redis-and-self-signed-certificates/61046,
n8n-all-executions-stuck-in-queued-starting-soon-and-never-execu,n8n,config,"All executions stuck in ""Queued"" / ""Starting soon"" and never executed",,,"Workers disconnected from Redis (or never started) while holding job locks, leaving queued executions in a stale locked state that new workers cannot claim.",,Set QUEUE_HEALTH_CHECK_ACTIVE=true to detect worker disconnects. Restart worker containers to release stale Redis locks; jobs requeue automatically. Ensure every main/webhook/worker container shares EXECUTIONS_MODE=queue and identical Redis vars. Avoid OFFLOAD_MANUAL_EXECUTIONS_TO_WORKERS=true if you stop executions manually.,mined,https://community.n8n.io/t/urgent-all-executions-stuck-in-queued-queue-mode-redis-stack-review-request/225804,
n8n-connection-lost-workflow-editor-behind-nginx-reverse-proxy,n8n,config,"Connection Lost (workflow editor, behind nginx reverse proxy)",,,"The nginx location block is missing the WebSocket upgrade headers, so the push/SSE channel n8n uses for editor live-updates is dropped by the proxy.",,"Add to the n8n location block: proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection ""upgrade""; Also set proxy_set_header Host $host; and X-Forwarded-Proto $scheme;. Reload nginx and hard-refresh the browser.",mined,https://community.n8n.io/t/connection-lost-using-nginx-reverse-proxy-n8n-1-16/32962,
n8n-read-econnreset,n8n,connectivity,read ECONNRESET,ECONNRESET,,"The remote server abruptly closed the TCP connection mid-transfer, often due to firewall rules, TLS mismatches, keep-alive timeouts, or the n8n host lacking a stable outbound IP on the target's allowlist.",,"Retry the request to rule out a transient blip, then confirm your n8n host's outbound IP is not blocked or rate-limited by the target. In Docker, ensure a stable network route (not NAT hairpin). Enable 'Retry on Fail' on the HTTP Request node (3 retries, 1s wait); for SFTP, downgrading ssh2-sftp-client to 10.x has resolved it.",mined,https://community.n8n.io/t/http-post-request-error-read-econnreset/22839,
n8n-connect-etimedout,n8n,timeout,connect ETIMEDOUT,ETIMEDOUT,,"The outbound TCP connection to the target host got no reply within the OS connect timeout, usually because the destination is firewalled or unreachable from the n8n network.",,"Verify the endpoint is reachable from the n8n host (curl/wget from the same container). Check cloud security-group/firewall rules for the destination port. In Docker, confirm the container can reach external IPs. Enable 'Retry on Fail' as a short-term mitigation while the network path is fixed.",mined,https://community.n8n.io/t/my-http-request-node-to-an-api-keeps-failing-with-etimedout/178585,
n8n-getaddrinfo-eai-again,n8n,connectivity,getaddrinfo EAI_AGAIN,EAI_AGAIN,,"DNS resolution returned a temporary failure, most often because n8n runs in an Alpine/musl Docker image whose DNS resolver is less resilient than glibc, or the container's DNS server is overwhelmed.",,"Add '--dns 8.8.8.8 --dns 1.1.1.1' to docker run (or 'dns:' in compose) to use reliable resolvers. If you build the image, switch from Alpine to a Debian/Ubuntu base. Enable 'Retry on Fail' as a stopgap; on n8n Cloud it is usually transient and re-running after ~2 minutes succeeds.",mined,https://community.n8n.io/t/getaddrinfo-eai-again-dns-error/33064,
n8n-http-request-credentials-not-found,n8n,auth,HTTP Request: Credentials not found,,,The credential referenced by the node was created by a different user account; on Community Edition each credential is private to its creator.,,"Open the node, click the credential selector, and create a fresh credential under your own account instead of reusing another user's. Re-enter all credentials after importing a workflow. Teams needing shared credentials should use a plan that supports credential sharing.",mined,https://community.n8n.io/t/error-http-request-throws-credentials-not-found-error/229864,
n8n-node-has-no-access-to-credential,n8n,auth,Node has no access to credential,,,A workflow was exported from one instance/user and imported into another; the credential IDs in the JSON no longer match any credential on the new instance.,,"After importing, open every flagged node and re-select or recreate the credential from the dropdown — do not copy credential IDs across instances. For multi-instance setups, export credentials with 'n8n export:credentials' and import them on the target before importing workflows.",mined,https://community.n8n.io/t/error-node-has-no-access-to-credential/35780,
n8n-502-bad-gateway-self-hosted-behind-reverse-proxy,n8n,config,"502 Bad Gateway (self-hosted, behind reverse proxy)",502,,"The reverse proxy (nginx/Caddy) closes the upstream connection before a long-running execution completes, because the default proxy_read_timeout of 60s is too short.",,"Set 'proxy_read_timeout 300s; proxy_connect_timeout 300s; proxy_send_timeout 300s;' in the nginx server block and reload. Add WebSocket upgrade headers to prevent editor disconnects. Under load, move from SQLite to PostgreSQL and consider EXECUTIONS_MODE=queue with Redis.",mined,https://community.n8n.io/t/self-hosted-n8n-on-hostinger-vps-frequent-502-bad-gateway-errors-server-hangs-during-workflow-execution/274581,
n8n-the-workflow-did-not-return-a-response,n8n,schema,The workflow did not return a response,,,"An AI Agent sub-workflow tool ran but the parent got no structured output, typically because parallel branches converge without a Merge node and a race drops the final item.",,"Insert a Merge node (Combine) before the sub-workflow's final node to consolidate branches. Ensure the last node emits a JSON object with a 'response' key. For webhook sub-workflows, add a 'Respond to Webhook' node set to 'First incoming Item'. Test the sub-workflow in isolation first.",mined,https://community.n8n.io/t/ai-agent-sub-workflow-tool-the-workflow-did-not-return-a-response/129345,
n8n-can-t-get-data-for-expression-missing-paireditem-data,n8n,schema,Can't get data for expression - Missing pairedItem data,,,"A Code node did not attach paired-item metadata to its output, so downstream expressions like $('Node').item cannot trace which input produced each output.",,"Return items with a 'pairedItem' index, e.g. return items.map((item, i) => ({ json: item.json, pairedItem: i })). See the n8n docs 'Item linking in the Code node'. For single items use $input.first() instead of .item. Re-run from the start, not mid-execution.",mined,https://community.n8n.io/t/error-can-t-get-data-for-expression/33344,
|