URL Parameter Issue

I know we can use url parameter like :id, but when I meet this type of url below:
/api/v2/tickets/{id}.json

I cannot make it work using /api/v2/tickets/:id.json, as Postman will treat the entire id.json as a parameter.

Is there any solution?

Hey, @shawn.wang.zerologix welcome to our community!

It may not be the best way to do it, but one way to do what you want is to create variables and store your list IDs and then iterate over the list.

To exemplify with just one ID follow the example below.

In this case I use a variable for the ID and one for the .json format.

Hope this helps! :vulcan_salute: