When to use it
Use “me” values when:- A step needs to be scoped to the user running the journey (for example, “get my account”, “create a resource owned by me”, “send a notification to my email”).
- You are building a Runbook and want each support agent who runs it to automatically act as themselves.
- You want to avoid sharing a generic test account and instead have each user exercise the API as their own identity.
Key concepts
Resolved from the authenticated session. When a journey runs, Reqflo reads “me” values from the identity of the authenticated user. No manual entry is required. Available “me” fields. The exact fields available depend on what Reqflo stores about the authenticated user. Common examples include:| Field | Resolves to |
|---|---|
me.email | The authenticated user’s email address |
me.user_id | The authenticated user’s internal user ID |
me.name | The authenticated user’s display name |
The full list of available “me” fields depends on your organization’s Reqflo configuration. Check the Values panel to see which “me” fields are available in your workspace.
How it works
Reference a 'me' value in a step
In the step’s value configuration, select “me” as the source and choose the field (for example,
me.email). You can also reference it directly in YAML.Examples
Referencing a “me” value in YAML:me.email in an audit-log step so the log records which agent ran the investigation — automatically, without the agent needing to type their own email.
Combining with run inputs:
fromUserId is always the running user, while recipient_id and amount are supplied as run inputs.

