When to use it
Use hard-coded values when:- The value is a constant that will never differ between runs, environments, or users (for example, an API version header like
v2, a fixed page size, or a content type). - The step always needs the same value and there is no scenario where you would want to override it.
- You want to make it obvious in the journey definition that a particular field is intentionally fixed.
- Differ by environment (use environment values instead).
- Are sensitive (use secret references instead).
- Should be configurable per run (use run inputs or variables instead).

