MS-600 · Question #69
You are developing a mobile application that will display the current signed-in user's display name and the application settings. The application settings are stored as Microsoft graph extension of…
The correct answer is C. https://graph.microsoft.com/v1.0/me?$select=displayName,id&$expand=extensions. For the event, group event, group post, message, personal contact, task, task list resource types, you can use the same REST request as getting the resource instance, look for an extension that matches a filter on its id property, and expand the instance with the extension. The…
Question
You are developing a mobile application that will display the current signed-in user's display name and the application settings. The application settings are stored as Microsoft graph extension of the user profile. Users of the application have intermittent network connectivity. You need to retrieve the least amount of data by using a single REST request. The solution must minimize network traffic. Which URI Should you use to retrieve the data?
Options
How the community answered
(60 responses)- A12% (7)
- B3% (2)
- C78% (47)
- D7% (4)
Explanation
For the event, group event, group post, message, personal contact, task, task list resource types, you can use the same REST request as getting the resource instance, look for an extension that matches a filter on its id property, and expand the instance with the extension. The response includes most of the resource properties. Example: GET /users/{Id|userPrincipalName}/events/{Id}/extensions/{extensionId} https://docs.microsoft.com/en-us/graph/api/opentypeextension-get
Topics
Community Discussion
No community discussion yet for this question.