Hello Toolers,
I am trying to pass a URL parameter into a Retool REST API query, but the parameters contains a percentage sign (%). Due to this Retool encodes the value and replaces all percent signs into their encoded value (%25), which messes up the parameter.
(notice how retool converts
pg51ovhfczf8%3A1630065917.0
to pg51ovhfczf8%253A1630065917.0
)
I have tried splitting up the value like this.
But unfortunately it still gets encoded. The only way that works is to directly type in the value and not use a variable like this
However I need to be able to use a variable for this task.
Is there any way to disable the URL encoding for a URL parameter?
Thanks,
Mason