Unable to change Monday.com column value

I’m trying to change column values in Monday.com based on data from multiple previous nodes.

However I’m getting the error “Cannot read properties of undefined (reading ‘change_column_value’)”

What am I doing wrong?

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Few things here to try.
Try them one at a time so you know what the issue is.

Item ID might be expecting a string value. at the end add .toString() like this: {{ $node[ 'Get item from "Client Overview" | Monday.com' ].json.id.toString() }}

If that doesn’t work try removing the " "s from the value section.

If it still doesn’t work then try removing all special chars like the emoji, -, and |.

Let me know if that works. If not I will take a closer look and try it myself

Hello Liam and thank you for your reply. Tested all of the steps above one by one without luck…

Any other ideas?:sweat_smile:

The node:
{
“meta”: {
“templateCredsSetupCompleted”: true,
“instanceId”: “2585abe1efb938917d28de49b9d3e9c5a474780662015cadd3f33854df4f952a”
},
“nodes”: [
{
“parameters”: {
“resource”: “boardItem”,
“operation”: “changeColumnValue”,
“boardId”: “4347525293”,
“itemId”: “={{$node[‘Get item from "Client Overview" | Monday.com’].json.id}}”,
“columnId”: “emails_for_login__1”,
“value”: “=test”
},
“id”: “32bfa6aa-5e41-4e7a-97bb-036acd5371a8”,
“name”: “Login Emails | Monday”,
“type”: “n8n-nodes-base.mondayCom”,
“typeVersion”: 1,
“position”: [
1400,
540
],
“credentials”: {
“mondayComApi”: {
“id”: “2”,
“name”: “Monday.com account”
}
}
}
],
“connections”: {},
“pinData”: {}
}

Can you expand the error message so I can see what the details are?

Of course! this is what it looks like when when I’m not adding the json.id.toString

And when I try adding “”

Did you see my updates? :slight_smile:

Sorry I actually missed it.

If you tried the things I mentioned then it might be some kind of bug.
I don’t have a Monday account and am not fully able to look into this right now so I will send this to the n8n team

Okay thank you!