How to Authenticate and Use the Power BI API inside Power Automate

…a flow. Let’s add another action, HTTP: We will provide the following: Method = POST URI = https://login.microsoftonline.com/common/oauth2/token Headers: Content-Type application/x-www-form-urlencoded Body: Replace the bold below with your information: grant_type=password…

How to Update Dynamics 365 to 2020 Release Wave 1

…some of the features in the link here: https://docs.microsoft.com/en-us/dynamics365-release-plan/2020wave1/index And access the PDF on the release here: https://go.microsoft.com/fwlink/?linkid=2116924 To install the release, which you may want to test out on…

Dynamics CRM OData and Web API URLs

…You will then see links to the Web API and the OData Organization Service: Web API URL: https://orgname.api.crm.dynamics.com/api/data/v8.1/ The service URLs: https://orgname.api.crm.dynamics.com/XRMServices/2011/Organization.svc https://orgname.crm.dynamics.com/XRMServices/2011/Organization.svc To get the OData: https://orgname.crm.dynamics.com/XRMServices/2011/OrganizationData.svc/ https://orgname.api.crm.dynamics.com/XRMServices/2011/OrganizationData.svc/  …

Getting Lookup Fields from Dynamics 365 Web API URL

…data. Let’s use Accounts as an example. We can access the API through the address https://yourorg.api.crm.dynamics.com/api/data/v9.1/: We can then get accounts using https://yourorg.api.crm.dynamics.com/api/data/v9.1/accounts: Now, accounts have a lookup field for…

How to Refresh Multiple Power BI Datasets using Power Automate and the Power BI API

…We will provide the following: Method = POST URI = https://login.microsoftonline.com/common/oauth2/token Headers: Content-Type = application/x-www-form-urlencoded Body: Replace the bold below with your information: grant_type=password &username=your@email.com &password=yourpassword &client_id=your client id from…