Skip to main content
When you have many values to supply — say, a full set of run inputs or variables for a scenario — typing each one into its own field is tedious. Paste values lets you drop in a block of key-value pairs all at once, and Reqflo maps them to the matching fields automatically.

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 .env block, 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.
For reusable configurations, prefer variable presets or Cases. Paste values is best for fast, ad-hoc setup.

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=VALUE lines (.env style): account_id=acc_123
  • Flat YAML mapping
Values are not saved to the journey. Pasting values fills in the current session’s run configuration. They are not persisted to the journey definition unless you explicitly save them as a preset or case. Secret values should not be pasted. If a field expects a secret reference, configure it by selecting the secret name rather than pasting the raw secret value. Secret values should never appear in the UI or be stored in journey configuration.

How it works

1

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.
2

Paste your values

Drop in your key-value block in any supported format. Reqflo parses the input and previews which fields will be filled.
3

Review and apply

Confirm the mapping. Reqflo fills the matched fields. You can adjust any individual field before running.

Examples

Pasting a JSON object:
{
  "account_id": "acc_88321",
  "subscription_tier": "pro",
  "coupon_code": "LAUNCH50"
}
Pasting .env-style lines:
account_id=acc_88321
subscription_tier=pro
coupon_code=LAUNCH50
After pasting, Reqflo matches 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.
Do not paste raw secret values (API keys, tokens, passwords) into the paste values field. Use secret references for sensitive values — they are selected by name and never displayed.