How to query a text with '&' in salesforce rest API?

240 Views Asked by At

I want to query a condition that include & in salesforce using rest API.

Eg:

{{instance_url}}/services/data/v55.0/queryAll?q=SELECT+FIELDS(STANDARD)+FROM+Case+WHERE+Status+IN+('Started','In Progress & Review','Completed')

It splitting the query by &. So I changed & to %26 (url encoded of &), now the Salesforce not identified its status.

0

There are 0 best solutions below