Manipulate query parameters before sending to API

Hello

I can see in the log files that make.com is sending the following request to an API

-… /records/exam_sets?filter=uuid%2Ceq%2C54dd6e8c" …

but I would need

/records/exam_sets?filter=uuid,eq,54dd6e8c".

comma “,” insetad of “%2C”

Is there any way to use STR_REPLACE (or something else) to manipulate the query before it is processed?

Thanks Rob

That’s url encoding and should be treated properly by the api. Is it not?

1 Like

yes it is - got confused withe the 2 parameter problem - sorry

2 Likes