I'm relatively new to using the Web API (HTTP REST API) to access Dynamics CRM using javascript so I apologise in advance if this is a stupid question.
We've recently upgraded from v8.2
online to v9.0
. Does this mean that I have to parse the js code library that we have and change code such as the one below from v8.2
to v9.0
?
req.open("GET", encodeURI(clientUrl + "/api/data/v8.2/accounts?$select=name&$filter=contains(name,'" + strSearch + "')"));
I did perform some preliminary searches but wasn’t able to locate anything that answers my question.