Picking variable value from a bag of options

I would like to be able to do some performance testing using Postman, where I call the same API endpoint but with a variety of param values. I’m looking for the simplest and most lightweight way to accomplish this.

My thought is that if my API is defined as:

http://example.com/getinfo/{{user}}

I could have somewhere configured that “user” value could be one of several options. For example, the options can be express in an array… [“bob”, “mary”, “joe”,…]

When I send the request, Postman would pick a value from the bag of options (randomly or incremental order). This would allow me to create an array with 100’s of values and test the API avoiding any potential caching that may exist.

Thanks,
Gino

Hey @lbustelo

Welcome to the community :wave:

It sounds like a data file might be a good option here:

https://learning.getpostman.com/docs/postman/collection_runs/working_with_data_files/

These can be either a JSON or CSV file that hold those values that you want to pass to the URL variable.