Connecting to Dynamics 365 using CrmServiceClient

…and using statement: using Microsoft.Xrm.Sdk; We will add some code to simply connect to Dynamics CRM: Note the connection string is in the format: var connectionString = @”AuthType=Office365;Url=https://yourcrm.crm.dynamics.com/;Username=youremail;Password=yourpassword” ; You…

Installing a Dynamics CRM 2013 Update

…updates are generally cumulative, from the Microsoft TechNet link, so you do not need to install previous rollups: https://technet.microsoft.com/en-us/library/hh699658(v=crm.6).aspx Note from the link, there are a few components to an…

Getting a Dynamics 365 CRM Dashboard URL

…Add your GUID to this URL: https://yourorg.crm.dynamics.com/dashboards/dashboard.aspx?dashboardId=GUID&dashboardType=1030&pagemode=iframeI.e. https://yourorg.crm.dynamics.com/dashboards/dashboard.aspx?dashboardId=063E7659-05D9-4030-960D-10FE269A5A8B&dashboardType=1030&pagemode=iframe Open this in a web browser. You will now see the dashboard in the full window. Note this URL does not appear…

Connecting to Dynamics CRM through Postman

…https://login.windows.net/common/oauth2/authorize?resource=https://yourcrminstance.crm.dynamics.com Auth Token URL: https://login.microsoftonline.com/common/oauth2/token Client Id: Your Id From Azure as described in the link above Let’s do an example where we will perform a GET operation on accounts….

PowerApps – Create a Model-Driven App

…your database on the Common Data Service”: Once complete, change the environment to the one you just created by selecting it on the top right: Note at this point, if…

jQuery Introduction and Hello World

…12.1x, or Safari 5.1x you will need jQuery 1.x. Otherwise, you can use later versions: Note the options for download. There is the compressed version and uncompressed version: The compressed…