Voice of the Customer for Dynamics 365 Performance and Limitations

…Maximum questions on a survey 250 Maximum pages per survey 25 Maximum sections per page 10 Maximum email invitations include piped data (24 hours): 50,000 For more information, visit https://docs.microsoft.com/en-us/dynamics365/customer-engagement/voice-of-customer/get-feedback-surveys….

How to Use the Dynamics 365 Xrm.WebApi

…directly in a browser through a URL. For example, to retrieve the first and last name of all people with lastname=”Smith”, we can do: https://yourorg.crm.dynamics.com/api/data/v9.0/leads?$select=firstname,lastname&$filter=lastname eq ‘Smith’ Running this in…

USD – Opening Multiple Records

…id: We can use the Id to create a URL that we will navigate to. Opening a record through Email a Link, we can see the URL structure: https://<yourcrm>.crm.dynamics.com/main.aspx?etc=2&extraqs=id=%7b<contactid>%7d&pagetype=entityrecord Our…

Assign a User’s Manager in Office 365

To assign a user a manager in Office 365, go through the following steps. Go to https://admin.microsoft.com/ and select to manage Exchange: Select recipients from the left, then the user…

Get Weather by Speaking App with Azure Cognitive Services

…where we are searching for weather in New York, NY: https://query.yahooapis.com/v1/public/yql?q=select%20item.condition%20from%20weather.forecast%20where%20woeid%20in%20(select%20woeid%20from%20geo.places(1)%20where%20text%3D%22New%20York%2C%20NY%22)&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys The response will be JSON, something like: Let’s add Newtonsoft.Json to our project through NuGet so we can parse…

Creating an Azure Virtual Machine

Log into https://portal.azure.com/ and select Virtual Machines. Click Add: And Create Virtual Machine: There are several machine images to choose from. We will select Windows Server: And then the build…