How to input {{my.token}} in expression?

Hi, I have an expression in the body element on a http request node. However, in the body I need to insert {{my.Playbook}} as value. However, N8N thinks it’s an expression. How can I make sure that I can input {{my.Playbook}} without it being listed as an expression?

To clarify {{my.Playbook}} is not an expression, it’s the actual string I need to pass

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:

Yes that is honestly not that simple and I also thought was at least a little bit simpler in the past. Anyway, you could do something like following:

{{ '{' + '{ my.Playbook }' + '}' }}
1 Like

Perfect! Thank you Jan!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.