Forum Discussion
TheHailender
Jul 24, 2019Copper Contributor
Hide the 'works with' information on the Office 365 profile card
Hello, Is it possible to hide the works with Information in the organization-tab on the Office 365 user profile cards? And knows somebody how the works with Information will generated? FYI: I disa...
- Jul 24, 2019AFAIK, there is not currently a way to customize the people card in Office 365
PeterNjorogeMS
Microsoft
Jan 10, 2022TheHailender 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:
On how the information is generated, kindly do through this page : Use the people API in Microsoft Graph to get information about the people most relevant to you - Microsoft Graph | Microsoft Docs
RafaelVarela
Jan 12, 2022Copper Contributor
I tried to disable de People Insights for one group with no success, both in PowerShell and in Graph Explorer.
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
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, 2022Copper 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.