Basics
Templates are rendered with workflow context — the shared object of upstream node outputs keyed by each node's variable name. HTML escaping is disabled so quotes and JSON stay intact.
{{myVariable}}— insert a context value as a string{{myVariable.field}}— nested path on an object{{json myVariable}}— serialize an object / array as JSON text- Helper arguments can be literals or context paths, e.g.
{{add count 1}}
Hello {{user.name}},
Today is {{now "YYYY-MM-DD"}}.
Request time (ISO): {{now}}
Payload:
{{json httpResult}}Variable names come from each node's variable field in the editor. See the node catalog for which data fields accept templates.