Dynamics 365 Configuration Data Mover v2.0

I’ve released an updated version of my popular CRM Configuration Data Mover utility. This version now supports Dynamics 365 and has an updated GUI built with Windows Presentation Foundation that replaces the previous Windows Forms GUI. Jobs that were created with earlier versions of the tool will work with this version, but you will have to update your CRM connection parameters to specify the authorization type - Active Directory, IFD or Office 365. »

Executing Dynamics 365 workflows from Microsoft Flow

The only Dynamics 365 actions that Microsoft Flow offers right now are “create a new record” and “list records,” but with just a bit of additional effort it’s possible to access all the capabilities of the Web API. Today I will show how to create a Microsoft Flow that queries a set of accounts and executes a workflow for each one. »

Dynamics 365 and Python integration using the Web API

A few days back I wrote a post that showed an easy way to set up Dynamics 365 and Node.js integration using the Web API. Here is Python code that demonstrates equivalent functionality to query contacts and display their information: import requests import json #set these values to retrieve the oauth token crmorg = 'https://CRMORG. »

Dynamics 365 and Node.js integration using the Web API

I wrote a blog post in early 2015 that showed how to access the Dynamics CRM organization data service from a Node.js application. Today I will show an easy way to retrieve data from a Dynamics 365 Online organization in a Node.js application using the Web API. Unlike the CRM organization service, the Dynamics 365 Web API does not allow you to authenticate directly with a user name and password. »

Automatically executing HTTP POST requests in Dynamics CRM iframes

The Dynamics CRM SDK allows you to set the source URL for an iframe control on a form, and that is fine if all you need to do is load web pages that are accessible via HTTP GET requests. If you need to automatically display the results of an HTTP POST request inside an iframe, it’s a bit more challenging. »