Using Variables in Workflows

If you need to store a variable for use within a workflow, the most straightforward way to achieve this is to use Assertions as part of a Workflow.

The process is simple:

  1. Use Assertions to capture the value.
  2. Set an environment variable to the captured value.
  3. Use the environment variable in your API calls.

This could be used to set OAuth tokens for use in other calls where a workflow runs every few hours to set the token or refresh the token used in several calls.

Use Assertions to Capture the Values

In the Assertions section of the API Call Edit tab, you can extract variables from your JSON or XML content and save them to a variable. For more in-depth tutorials on these content types, follow the JSON tutorial here and the XML tutorial here.

Firstly, go to the API call where you want to extract your variables. Scroll to the Assertions section in the Edit tab. From here you can put the JSON path of the variable you want and assign a name for the variable. Save these changes.

Set an Environment Variable to the Captured Value

Next, create a new API call or use an existing one to set the variable. This example sets the variable 'access_token' to the value set in the previous API call.

Use the Environment Variable in your API calls

Now, you will be able to see the different variables passing between your API calls in your Workflow.


What’s Next

For more in-depth guides on parsing JSON & XML content, follow the links below: