Overview
A filtered request allows you to narrow down the data you’re asking for. This is useful when you're dealing with a database or service with a lot of data.
Tines references
Before getting started, we recommend familiarizing yourself with the surrounding functionality this article covers:
Make it happen
Scenario
Instead of pulling a full list of addresses, only ask for US-based addresses.
In the storyboard, pull in an HTTP Request Action.
Name the action something relevant, like “Get US Addresses.”
Delete the Payload section of the action.
For the URL of the action, type
https://fakerapi.it/api/v2/addresses?_country_code=US
. Notice how we are filtering the request to only pull US addresses.Change the Method of the action to
GET
.Click Run to run the action.
See the results in the action’s Events panel!