Data aliases
Last updated
Was this helpful?
Last updated
Was this helpful?
A data alias is a shortcut that extracts specific pieces of information from a JSON response and stores them in an easy-to-use variable. Instead of navigating the entire JSON structure every time, a data alias pulls out exactly what you need—like a user’s name or email—and makes it accessible throughout your workflow. Think of data aliases as custom labels you assign to specific data.
Recall that the context is where all data generated, captured, or used in a workflow is stored. Think of it as a shared memory for a specific workflow. Data aliases are stored in the context, making them available for reuse at any step in your workflow without re-fetching the data.
For example, imagine that you've set up your Microsoft Graph integration. You send a request via API call to get info about a user. The response comes back to you in JSON format, which can be lengthy and time consuming to search through. A data alias would let you get all of the information, or pinpoint specific information like the user's name or email address, and store it in a simpler variable in the context for use.
Together, variables, data aliases, and the context make your workflows in Rewst more efficient, organized, and adaptable. These tools help you reuse workflows, reduce manual work, and customize data handling to fit any automation need.
When adding a new data alias, you'll need the following:
Key: The name you assign to specific data.
Value: The actual data it corresponds to. The code editor button allows for the use of Jinja customization for intricate data or expressions.
If you set an alias such as my_task_result -> {{ RESULT }}
, later tasks can refer to this data using {{ CTX.my_task_result }}
.
You can also use a data alias to extract specific information and manipulate data. Expanding on our example from above, take the input from the Microsoft Graph get user action and extract the user's name and user principal name for ease of use.
Drag the Get User action onto the workflow builder canvas.
Add your user into the User ID field.
Set your context variable name under Publish Result As. The workflow action results will be stored as the value.
Add your data alias name. Click to open the Jinja editor and set up your data alias.
Use the following Jinja to create a new dictionary object and set the displayName
and userPrincipalName
keys.
Run the workflow. Then, click View Results
Click Load Context.
Expand the context to see our data alias filtered_user_details
now only showing the displayName
and userPrincipalName
.
Data aliases are added via transitions. See more about how to use transitions in workflows here.
Navigate to Automations > Workflows.
Search for your desired workflow.
Click > to the far right of that workflow to open its workflow builder canvas.
Click to add your data alias.
Paste the key into the key field. Click to open the Jinja editor and set up your data alias.
Click to remove a data alias.
Click and to move multiple data aliases up and down in the data alias list.
Click to open the Data Aliases menu. This will display a complete list of all data aliases for that workflow.