gee
08/21/2025, 11:10 AMMarvin
08/21/2025, 11:10 AMMarvin
08/21/2025, 11:19 AM<https://api.example.com/customers/{{> flow_run.parameters['customer_id'] }}/notify
A few notes:
- Use {{ flow_run.parameters['...'] }}
to reference your flow parameters. You can also use guards/defaults, e.g. {{ flow_run.parameters['customer_id'] | default('unknown') }}
.
- If you select a Webhook block in the action, the block provides defaults (URL, headers). The action’s URL/headers/body fields are what get templated at runtime. If you need dynamic parts, put the template in the action fields rather than relying on a templated value saved inside the block itself.
Helpful docs:
- Access parameters in templates (Automations)
- Templating utilities API
If you share the parameter name and the URL pattern you’re aiming for, I can suggest the exact template string.