I’m trying to add labels to a Trello card using the Trello node in n8n (self-hosted v1.118.2). The workflow receives type and category from a webhook, and I want to map these to Trello label IDs dynamically.
Problem:
-
When I return only one label ID, it works fine.
-
When I try to return two or more labels (comma-separated), I get:
Things I’ve tried:
-
Returning an array of IDs instead of a comma-separated string.
-
Ensuring no
undefinedvalues are pushed. -
Making label matching case-insensitive.
I’m sending exactly one or two labels depending on the webhook, e.g., "bug" + "ui".
Has anyone successfully mapped multiple webhook values to Trello labels dynamically in n8n? Am I missing something about how the Trello node expects multiple label IDs?




