When to use it
Use paste values when:- You are setting up a new scenario and have the values already in another format (a copied JSON object, a
.envblock, a spreadsheet row). - You want to quickly seed a journey with values for a one-off test without creating a full preset or case.
- You are onboarding a journey and have a reference set of values you want to apply immediately.
Key concepts
Bulk input, field matching. When you paste a block, Reqflo parses the key-value pairs and attempts to match each key to a declared run input or variable. Keys that match are filled in; keys that do not match a declared field are ignored (or surfaced as unrecognized, depending on the format). Supported formats. Reqflo accepts common key-value formats:- JSON object:
{ "account_id": "acc_123", "tier": "pro" } KEY=VALUElines (.envstyle):account_id=acc_123- Flat YAML mapping
How it works
Open the paste values input
In the Values panel or the run configuration screen, look for the Paste values option. This opens a text area for bulk input.
Paste your values
Drop in your key-value block in any supported format. Reqflo parses the input and previews which fields will be filled.
Examples
Pasting a JSON object:.env-style lines:
account_id, subscription_tier, and coupon_code to the corresponding declared run inputs or variables. Any key that does not match a declared field is ignored.

