I’m trying to update ClickUp custom fields using the ClickUp node in n8n. Most fields (text, email, phone, amount) work perfectly using expressions.
However, I’m having trouble with a dropdown custom field. I want to assign one of the dropdown options based on a value from a form submission.
This is the part that I am trying to fix:
{
“id”: “cb13bb47-fdc4-4439-9a28-1f971efd43d4”,
“value”: “{{ $(‘Edit Fields’).item.json.packageId }}”
}
i tried this one too:
{
“id”: “cb13bb47-fdc4-4439-9a28-1f971efd43d4”,
“value”: {
“id”: “2f5fa18f-6f36-4463-b4a7-201f4503ac0e”
}
}
Thanks for help-