I am making a REST GET call to our company's SharePoint. The "raw" endpoint in ascii is:
https://{myCompany}.sharepoint.com/sites/{mySite}/_api/web/getbytitle('myList')/Items?&filter=Title eq 234
Now, given the special characters, I would of expected a URL Encoding (percent encoding) to:
https://{myCompany}.sharepoint.com/sites/{mySite}/_api/web/getbytitle('myList')/Items%3F%26filter%3DTitle eq 234
However, Postman's code snippet gives me:
https://{myCompany}.sharepoint.com/sites/{mySite}/_api/web/getbytitle('myList')/Items?null=null&filter=Title eq 234
The request works, however I don't understand the formatting that is occurring and would apricate an explanation. Specifically, how it is:
Items?&filter=Title eq 234 = Items?null=null&filter=Title eq 234
