Power BI and Dynamics 365 Data Security

…and publish it to powerbi.com using our Administrator account. If we browse out to the report in powerbi.com as Administrator, we can see our report showing all our opportunities: Now…

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….

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…

Dynamics 365 Global Option Sets and Web API

…accessed through the Web API. To access them, go to the URL: https://yourcrm.crm.dynamics.com/api/data/v8.1/GlobalOptionSetDefinitions?$select=Name From here, the MetadataId value of the option set can be used to https://yourcrm.crm.dynamics.com/api/data/v8.1/GlobalOptionSetDefinitions(MetadataId) E.g. https://yourcrm.crm.dynamics.com/api/data/v8.1/GlobalOptionSetDefinitions(3de5f647-b149-4c82-b275-dd91e860b08d)  …

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…

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…