When to use it
Example values are most useful when:- You want to show what a realistic request looks like without running it.
- You’re setting up a template that others will use and want to make clear what kind of data each field expects.
- You need auto-generated test data for fields like emails, names, UUIDs, or amounts so that runs don’t reuse the same static values every time.
Key concepts
- Example value — a static, representative value for a field. Shown in the template preview and used as a fallback when no other value source is configured for a step.
- Faker value — a generation hint that tells Reqflo to produce a realistic, randomized value at run time using Faker.js-style generators. Fresh data every run.
- Scope — example and Faker values are defined at the template level, on each declared value. A step can override them with a specific source; the template default is the fallback.
How it works
Each declared template value can include anexample field (static) and a faker field (generation hint). When a step runs without a configured source for that value, Reqflo uses the Faker hint to generate one. If no Faker hint is set, it falls back to the example value.
Available Faker categories include:
| Generator | Example output |
|---|---|
internet.email | ada.lovelace@example.com |
string.uuid | a04b3f2e-9c1d-4e7a-b832-1f2c3d4e5f6a |
person.firstName | Priya |
person.lastName | Okonkwo |
number.int | 42 |
finance.amount | 198.50 |
date.future | 2026-11-14T08:23:00Z |
lorem.sentence | A short placeholder sentence |
Faker generation follows Faker.js conventions. The exact set of available generators matches what Reqflo supports — check the template editor for autocomplete suggestions on the
faker field.Examples
Static example value onlyUSD — no generation hint, just a static example used as the default.
Faker-generated email
example here acts as documentation. The running system uses internet.email to generate a fresh address each time.
UUID for a uniqueness-sensitive field
currency is always USD (static, no Faker hint). amount and note are generated fresh each run.
Related pages
Template values
How templates declare what values they need.
HTTP request templates
The full shape of an HTTP request template.
Cases
Save named value configurations for repeatable test scenarios.
Parallel data runs
Run a journey multiple times with different data using JSON or CSV.

