It appears that string parameters with embedded spaces cause problems for RestClientVS, at least with OData endpoints with string parameters. For example, this URL works in a browser and works in Postman but fails in RESTClientVS:
GET https://localhost:8086/odata/v1/customers(Name='A B C RENTAL CENTER INC')
A 404 is returned. But if the parameter is first URL encoded, like this:
GET https://localhost:8086/odata/v1/customers(Name='A%20B%20C%20RENTAL%20CENTER%20INC')
It appears that string parameters with embedded spaces cause problems for RestClientVS, at least with OData endpoints with string parameters. For example, this URL works in a browser and works in Postman but fails in RESTClientVS:
A 404 is returned. But if the parameter is first URL encoded, like this:
Then it works.