JavaScript – Object defineProperty

…phonenumber }, “website”: { writable: true, enumerable: true, configurable: true, value: website }}); } //Print out Customer var Customer00001 = new Customer(“Bob”, “Smith”, “bob@test.com“, “111-222-7777”, “www.test.com“); console.log(Customer00001); This displays:  …

Dynamics 365 Web API Retrieve, Select, Filter, Order By and Top

…can do this with the query. Again, we divide each operator with the & symbol. This produces: https://crm374549.api.crm.dynamics.com/api/data/v9.1/accounts?$select=name,telephone1,revenue,industrycode,_transactioncurrencyid_value&$top=10&$orderby=name%20asc&$filter=revenue%20gt%2010000000 TIP: A list of operators additional can be found at https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/webapi/query-data-web-api  …

Looking at the Dynamics 365 WebApi through Browser URL

…To select top, we can use: https://yourorg.crm.dynamics.com/api/data/v9.0/contacts?$select=firstname,lastname,address1_city,birthdate&$top=10 Filter To filter, we can use: https://yourorg.crm.dynamics.com/api/data/v9.0/contacts?$select=firstname,lastname,address1_city,birthdate&$top=10&$filter=firstname eq ‘Jim’ This then translates to: https://yourorg.crm.dynamics.com/api/data/v9.0/contacts?$select=firstname,lastname,address1_city,birthdate&$top=10&$filter=firstname%20eq%20%27Jim%27 To filter on birthdate, use (note no quotes): https://yourorg.crm.dynamics.com/api/data/v9.0/contacts?$select=fullname,birthdate&$top=100&$filter=birthdate…

Exchange Folder Level Tracking in Dynamics 365

Dynamics 365 supports folder level tracking of exchange folders using server-side sync. We will go through how this works. In Outlook, create a new folder or view existing folders: In…

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…

Power BI Blog

…learning and solving problems. Hope you learn something, and of course, feel free to connect with me: Twitter – https://twitter.com/carldesouza LinkedIn – https://www.linkedin.com/in/carld/ YouTube – https://www.youtube.com/user/carldesouza Email – carl@carldesouza.com  …

Dynamics 365 Blog

…Operations and Dynamics GP. Hope you learn something, and of course, feel free to connect with me: Twitter – https://twitter.com/carldesouza LinkedIn – https://www.linkedin.com/in/carld/ YouTube – https://www.youtube.com/user/carldesouza Email – carl@carldesouza.com  …