Handle API Filters in postman

How to add filters in postman request.
My End point :/v1/customers?where={“patronCode”:{“in”:[“P9076258”]}}&take=5

How to user this “where={“patronCode”:{“in”:[“P9076258”]}}” in my GET Request?

This can be done via the Params tab on the request.

I found the solution. API request will not handle {{ , so we need to encode before passing the request

pm.request.url=encodeURI(pm.variables.replaceIn(pm.request.url))