- Not all the operators are available when dealing with relationship columns, for example the "Today" operator for DateTime columns (because the syntax looks for properties inside the main table), so I removed this kind of operators for relationship columns.
- Not all the relationships can be navigated and filtered, like the "Owner" one (but you can use the "Owning Team" or the "Owning User"), they appear inside the UI but an error appear when the query is executed.
January 24, 2022
January 15, 2022
Dataverse Web API and REST Client VS Code extension
If you use Visual Studio Code and worked with API you probably know the extension called REST Client. It has more than 2 million downloads, the advantages are that you can use it inside Visual Studio Code (meaning you don't need to have or switch to Postman) and it has a file format (.http) to save the requests.
Let me be clear here, I prefer Postman but as I said many times not everybody uses the same tools so let's explore a bit how REST Client extension works.
If you don't consider authentication it's pretty simple, you write your endpoint and you can click to execute the request, something like this:
What if you need to deal with authentication and the query is against the Dataverse Web API endpoint?First of all we create/update the settings.json in order to add the required syntax by REST Client to add environment variables, like this:
{ "rest-client.environmentVariables": { "$shared": {}, "Dataverse": { "url": "https://mydemo.crm.dynamics.com", "tenantid": "89d6b4f0-f93c-4d88-800c-ff6acdae523a", "clientid": "71aa6fe0-040f-493f-b19d-9f248692bf93", "clientsecret": "notsosecret" } } }
If you are familiar with REST Client you probably done something similar, in the above example we defined a "Dataverse" environment and we can use the defined variables.
REST Client format allows to save multiple requests in a single .http file and reuse variables filled by previous requests, the idea here is to first execute a request to get the bearer token and use it as authorization for the next requests.
If we use the V2 Endpoint the request would be like this:
### Get Access Token # @name getAADToken POST https://login.microsoftonline.com/{{tenantid}}/oauth2/v2.0/token Content-Type: application/x-www-form-urlencoded grant_type=client_credentials&client_id={{clientid}}&client_secret={{clientsecret}}&scope={{url}}/.default ### Extract access token from getAADToken request @token = {{getAADToken.response.body.access_token}}We are using the variables defined inside the settings.json and store the bearer token inside a variable called token.
### Get Contacts GET {{url}}/api/data/v9.1/contacts?$select=contactid,fullname Authorization: Bearer {{token}} OData-MaxVersion: 4.0 OData-Version: 4.0 Content-Type: application/json; charset=utf-8 Accept: application/json Prefer: odata.include-annotations=*In this way you can now execute your queries inside REST Client.
The first option "Export REST Client Environment" allows you to create a sample settings.json with the variables I described above, the second option "Export as REST Client Collection (.http)" allows you to download the requests inside the collection as .http file including the authentication request (you can also select the V1 or V2 endpoint)
Hope it helps
January 12, 2022
Dataverse REST Builder and Lookups
When I created Dataverse REST Builder I liked very much the idea to use Xrm.Utility.lookupObjects, having a custom page using this function makes (at least for me) the application more integrated with the system, also many requests (like Retrieve Single or the Associate/Disassociate) require to insert the ID of a record.
When Dataverse REST Builder was executed inside XrmToolBox, the following message appeared: