Describe the problem/error/question
Hello,
I wanted to create workflow tagger what will update workflow tags. It seems to n8n api complain on something what I don’t agree with, so I am confused.
What is the error message (if any)?
I am getting on request node error:
The resource you are requesting could not be found [item 0]
Some tags not found
Error code: 404
Full message: 404 - "{\"message\":\"Some tags not found\"}"
Request:
{ "body": [ { "id": "E85csJjVdrH7f9kb" }, { "id": "2QPXVOFCQ9izGgIF" } ], "headers": { "accept": "application/json,text/html,application/xhtml+xml,application/xml,text/*;q=0.9, image/*;q=0.8, */*;q=0.7", "X-N8N-API-KEY": "**hidden**" }, "method": "PUT", "uri": "https://mws02-51638.wykr.es/api/v1/workflows/0yJr6l6jR1njqDBX/tags", "gzip": true, "rejectUnauthorized": true, "followRedirect": true, "resolveWithFullResponse": true, "followAllRedirects": true, "timeout": 300000, "encoding": null, "json": false, "useStream": true }
So I try assign tags: E85csJjVdrH7f9kb
and 2QPXVOFCQ9izGgIF
on wf with id 0yJr6l6jR1njqDBX
I see on other request that api return those tags:
[
{
"data": [
{
"createdAt": "2025-01-12T02:34:33.484Z",
"updatedAt": "2025-01-12T02:34:33.484Z",
"id": "E85csJjVdrH7f9kb",
"name": "aidevs"
},
// [...]
{
"createdAt": "2025-02-02T16:34:09.518Z",
"updatedAt": "2025-02-02T16:34:09.518Z",
"id": "2QPXVOFCQ9izGgIF",
"name": "chainLlm"
}
],
"nextCursor": null
}
]
Please share your workflow
Information on your n8n setup
- n8n version: latest
- Database (default: SQLite): sqlite
- n8n EXECUTIONS_PROCESS setting (default: own, main): default
- Running n8n via (Docker, npm, n8n cloud, desktop app): selfhosted
- Operating system: linux
Any idea what I could do wrong will be appreaciated :3
Thanks