Hi, I have an API endpoint which require parameter to use a time string in the format of %Y-%m-%d %H:%M, which e.g. look something like this:
https://host/api/v1.0/endpoint?start=2024-06-21 14:00&end=2024-06-21 15:00
However when I put this on the URL, it always get converted to a value of 2024-06-21%2014:00 using example above. The API endpoint is unable to accept %20 and always ended up throwing error.
Is there a way to avoid space being converted in Discover/Collect URI in REST API collector?