I am getting a LinkedIn API error when using the n8n LinkedIn node.
Error:
Requested version 20250401 is not active (NONEXISTENT_VERSION, HTTP 426)
Node:
LinkedIn → Create Post
n8n version:
2.15.1 (Cloud)
Issue:
The node fails before request execution due to invalid LinkedIn API version header.
It looks like the node is sending:
LinkedIn-Version: 20250401
But LinkedIn rejects it as an inactive API version.
Expected behavior:
Node should use a valid LinkedIn API version or allow overriding the API version.
Actual behavior:
All LinkedIn post requests fail immediately with HTTP 426.
Workaround:
Using HTTP Request node with LinkedIn-Version: 202401 works correctly.
Stack trace:
{
“errorMessage”: “Your request is invalid or could not be processed by the service”,
“errorDescription”: “Requested version 20250401 is not active”,
“errorDetails”: {
“rawErrorMessage”: [
“426 - {“status”:426,“code”:“NONEXISTENT_VERSION”,“message”:“Requested version 20250401 is not active”}”
],
“httpCode”: “426”
},
“n8nDetails”: {
“nodeName”: “Publish to LinkedIn”,
“nodeType”: “n8n-nodes-base.linkedIn”,
“nodeVersion”: 1,
“resource”: “post”,
“operation”: “create”,
“time”: “4/16/2026, 11:51:37 AM”,
“n8nVersion”: “2.15.1 (Cloud)”,
“binaryDataMode”: “filesystem”,
“stackTrace”: [
“NodeApiError: Your request is invalid or could not be processed by the service”,
" at ExecuteContext.linkedInApiRequest (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-nodes-base@file+packages+nodes-base_@aws-sdk+credential-providers@3.808.0_asn1.js@5_8da18263ca0574b0db58d4fefd8173ce/node_modules/n8n-nodes-base/nodes/LinkedIn/GenericFunctions.ts:71:9)“,
" at processTicksAndRejections (node:internal/process/task_queues:103:5)”,
" at ExecuteContext.execute (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-nodes-base@file+packages+nodes-base_@aws-sdk+credential-providers@3.808.0_asn1.js@5_8da18263ca0574b0db58d4fefd8173ce/node_modules/n8n-nodes-base/nodes/LinkedIn/LinkedIn.node.ts:182:31)“,
" at WorkflowExecute.executeNode (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-core@file+packages+core_@opentelemetry+api@1.9.0_@opentelemetry+exporter-trace-otlp_2d19a9be2839cb42cd2e8c9cacd05d5a/node_modules/n8n-core/src/execution-engine/workflow-execute.ts:1045:8)”,
" at WorkflowExecute.runNode (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-core@file+packages+core_@opentelemetry+api@1.9.0_@opentelemetry+exporter-trace-otlp_2d19a9be2839cb42cd2e8c9cacd05d5a/node_modules/n8n-core/src/execution-engine/workflow-execute.ts:1224:11)“,
" at /usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-core@file+packages+core_@opentelemetry+api@1.9.0_@opentelemetry+exporter-trace-otlp_2d19a9be2839cb42cd2e8c9cacd05d5a/node_modules/n8n-core/src/execution-engine/workflow-execute.ts:1670:27”,
" at /usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-core@file+packages+core_@opentelemetry+api@1.9.0_@opentelemetry+exporter-trace-otlp_2d19a9be2839cb42cd2e8c9cacd05d5a/node_modules/n8n-core/src/execution-engine/workflow-execute.ts:2315:11"
]
}
}