In this post I provide 2 ways to retrieve duplicates – using plain JS way and with usage of Xrm.WebApi namespace that was introduced as a part of 9.0 release. So here is plain JS: [crayon-5d16ad0646a97950720616/] And here is Xrm.WebApi version: [crayon-5d16ad0646a9d889705896/]
Continue Reading Andrew Butenko’s Article on their blog
How to Retrieve Duplicates using WebApi – Andrew Butenko’s Blog
In this post I provide 2 ways to retrieve duplicates – using plain JS way and with usage of Xrm.WebApi namespace that was introduced as a part of 9.0 release. So here is plain JS: var contactRecord = { “@odata.type”: “Microsoft.Dynamics.CRM.contact”, “firstname”: “Andrew”, “lastname”: “Butenko” }; var pagingInfo = { “PageNumber”: 1, “Count”: 10 }; …
Blog Syndicated with Andrew Butenko’s Permission


