Forum Discussion
Group Classification and Microsoft Graph
I'm pretty sure the information is already available the time you asked about it. No need for a powershell.
Using the groups endpoint:
https://graph.microsoft.com/v1.0/groups
I can get the needed information. The following group in my tenant is listed as expected:
https://graph.microsoft.com/v1.0/groups/0ea9da35-18d3-4c63-aa33-1daad3aa483b/classification
{ "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#groups('0ea9da35-18d3-4c63-aa33-1daad3aa483b')/classification", "value": "LBI" }
Here is the documentation:
https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/resources/group
If you are looking for all possible values you can check the specific settings (must be applied already to the tenant):
https://graph.microsoft.com/v1.0/groupSettings/
For my tennant:
https://graph.microsoft.com/v1.0/groupSettings/737eac5e-c369-43cc-bcbb-42dd764240a2/values
Result:
... }, { "name": "ClassificationList", "value": "Intern,Vertraulich,Streng Vertraulich,Geschlossen" }, ...
- Aug 25, 2017Hi Marco,
I can assure you that the information was not available in the 1.0 endpoint at the time of asking, and that was also confirmed by a Microsoft employee in the first answer.
On the other hand: thank you for informing me that it has been moved from the beta endpoint into v1.0!- Marco ScheelAug 30, 2017Iron Contributor
I've implemented a lifecyle solution relying on the V1.0 API and I checked my GIT repo and I'm 100% sure the endpoint had the classification attribute 2017-06-27.06.2017. The documentation was updated a little bite later as I checked the GIUTHUB repo of the docs:
This commit is from 2017-07-20. So Microsoft takes some time to update the docs... and maybe the availability of "new" features in the V1 API is different accross tenants...
It just boggled my mind, so I did the research to make sure I was not working with the beta endpoint with my prod apps ;)