Stop query from replacing commas with %2c

I'm trying to pass params to a query -

image

The API Request that gets sent is -
image

Is there any easy way to prevent that?

This is called URL encoding, it is done to prevent unsafe characters from being in your URL. You almost certainly want this, and the API you are calling should be un-encoding it on the other end. Is this causing unexpected behavior?

If so, where are you inputting that agent_numbers variable within retool? Depending on where it is will change what options you have.