Forum Discussion
Hide the 'works with' information on the Office 365 profile card
- Jul 24, 2019AFAIK, there is not currently a way to customize the people card in Office 365
TheHailender We have been working on exposing controls to enable administrators to disable/enable the feature for the whole company or a group of people in the company. The documentation should be able to help with that:
In Graph Explorer the response of the API allways return a NULL un the "disabledForGroup" field.
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#organization('8f0d452c-************')/settings/peopleInsights/$entity",
"isEnabledInOrganization": true,
"disabledForGroup": null
}
In Powershell i don't get any errrors, but it does nothing:
PS C:\> Connect-MgGraph -Scopes "User.ReadWrite","User.ReadWrite.All"
Welcome To Microsoft Graph!
PS C:\> Update-MgOrganizationSettingPersonInsight -OrganizationId 8f0d452c-******** -DisabledForGroup 0f670099-********
PS C:\> Get-MgOrganizationSettingPersonInsight -OrganizationId 8f0d452c-********
Id DisabledForGroup IsEnabledInOrganization
-- ---------------- -----------------------
True
- PeterNjorogeMSJan 13, 2022
Microsoft
RafaelVarela currently the controls are available in graph explorer only.
When disabling for the group you will need to provide the group ID. See the sample here from the documentation:
Example two: Update insights - Microsoft Graph beta | Microsoft Docs
- RafaelVarelaJan 13, 2022Brass Contributor
PeterNjorogeMS Thank you for your message.
I'm aware of that part of the documentation and I did provided the group ID in my test.
What you see in my previous message is a copy of the response of the server, not my request. The Organization and Group Id are ofuscated for the sake of security.
Here you have an screenshot with the request and the response:
- PeterNjorogeMSJan 13, 2022
Microsoft
Got it, now this takes a while before the changes reflect. Let's give it 24 hours then we can circle back and review it.