When to use it
Select an environment whenever you run a journey. Different environments let you run the same journey against sandbox, staging, and production systems without changing the journey itself.Key concepts
- Environment — a named configuration that provides system-level values per service: base URLs, environment flags, and other service-level settings. Environments are managed in Admin → Service environments.
- System target — what an environment represents. Choosing
stagingpoints the journey’s requests at staging endpoints; choosingproductionpoints them at production. - Environment values — values supplied by the environment at run time. They’re injected into steps that reference them, alongside run inputs and case values.
- Combining with cases and run inputs — environments, cases, and run inputs are separate and combine at run time. The environment answers where; the case answers what data; run inputs supply anything not covered by the case.
- Sandbox mode — a temporary, flexible override mode that lets you experiment with full value control without changing saved configuration. Useful for ad-hoc testing and debugging. Teams who want reusable configurations should prefer cases and explicit value sources over sandbox overrides — sandbox mode is intended for temporary use.
How it works
When you start a run (in Run mode, Runbook, or via the CLI), you choose:- Environment — which system target to run against.
- Case (optional) — which saved value configuration to use.
- Run inputs — any values not covered by the case.
Examples
A journey with three environments:| Environment | Base URL | Notes |
|---|---|---|
sandbox | https://api-sandbox.example.com | Safe to create/delete real-looking data |
staging | https://api-staging.example.com | Shared pre-production environment |
production | https://api.example.com | Live system — use with care |
Related pages
Environments concept
How environments work across Reqflo.
Cases
Named value configurations — separate from environments.
Service environments (admin)
Create and manage environments for your organization.
Value resolution order
How Reqflo resolves value conflicts between sources.

