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
- Olivegreen2080Jun 30, 2022Copper ContributorPeterNjorogeMS,Hi, Does anyone have an idea if there is a limit of API request call that can be made for peopleinsight using MS Graph.
I have been sending API calls using MS Graph to Patch Peopleinsight , got no error but no changes for 48hrs.
Suggestions or ideas please- Raymond AndreassenJun 30, 2022Copper Contributor
Olivegreen2080
Run a GET to see the settings:
https://graph.microsoft.com/beta/organization/<tenantID>/settings/peopleInsights- Olivegreen2080Jun 30, 2022Copper Contributor
Raymond Andreassen Thank you Ray. Yes I ran the Get command and I got the correct output but no changes for over 48hours.
- RafaelVarelaJan 12, 2022Copper ContributorI 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- 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: