Skip to content

Andrew Butenko

69 Posts
9,276 Views
Dynamics 365 Customer Engagement

How to Retrieve Duplicates using WebApi

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…

📅 3 December 2018 👁 60 views
Dynamics 365 Customer Engagement

How to share record with user using WebApi – Andrew Butenko’s Blog

var target = { “accountid”: “ACAAB842-21C7-E811-A96F-000D3A16A41E”, //put <other record type>id and Guid of record to share here “@odata.type”: “Microsoft.Dynamics.CRM.account” //replace account with other record type };   var…

📅 1 November 2018 👁 89 views
Dynamics 365 Customer Engagement

How to call QuerySchedule using WebApi – Andrew Butenko’s Blog

var context;   if (typeof GetGlobalContext === “function”) {     context = GetGlobalContext(); } else {     context = Xrm.Page.context; }   var start = new Date(); //Put Start datetime…

📅 11 July 2018 👁 125 views