In this post I will quickly cover the requirement of dynamically getting API version of dynamics CRM in JavaScript rather then hard coding it , so that in next releases your JavaScript doesn’t break. I am referring to this:
For Dynamics CRM version 8.2 or below, do this:
var apiVersion = Xrm.Page.context.getVersion();
For Dynamics CRM version 9 or above, do this:
var apiVersion = Xrm.Utility.getGlobalContext().getVersion();
It will give you an expanded version which includes minor and major versions. Now, all you have to do is crop the number to get only initial numbers such as 9.1 in this case:
var shortVersion= apiVersion.substring(3, myStr.indexOf(“.”) -1);
then finally use it in your request as:
req.open("GET",Xrm.Utility.getGlobalContext().getClientUrl()+ "/api/data/"+shortVersion+"/systemusers
Hope this helps!
Reblogged this on Debajit's Dynamic CRM Blog and commented:
Loads of my blog readers wanted to know..here is the perfect link to it.
LikeLiked by 1 person
Pingback: Get Api Version Dynamically For WebApi Requests - Microsoft Dynamics CRM Community
Your website has exceptional content. I bookmarked the site
LikeLike
Do you have any type of tips for writing articles?
That’s where I constantly battle as well as I simply end up staring vacant
screen for long period of time.
LikeLike