I’m trying to create a task in clickup through the n8n integration. If I choose the assignee from the dropdown list everything works fine and the task is created with the correct user.
But If i try to use the assignee from an expression, the task gets created but not assigned.
These are the following input styles I’ve already tried.
You are using { { [ {{$node["Config"].json["GitLabToClickUp"][$json["assignee"]["id"]].id }} ] } } for the expression so it could be that the data you are sending is the issue. Can you share hte outpu tof the config node and the node before the clickup node?
I have just made a click up account and my users ID is 44405069 if I create a task and set the assignee to {{[44405069]}} it appears to be setting the value correctly.
Using the variables from previous node if I use {{ [ parseInt($node["Config"].json["GitLabToClickUp"][$json["assignee"]["id"]].id )] }} it appears to be working, I removed the space between the {{ and also added parseInt as it expects a number not a string.