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…

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

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…

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…

How to Call the Power BI REST API from Postman

…that we will use to authenticate with the Power BI API. The type will be POST and we will be sending the request to https://login.microsoftonline.com/common/oauth2/token. We will also send the…