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:
- RafaelVarelaJan 12, 2022Brass 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, 2022Microsoft
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:
- 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- Raymond AndreassenJun 30, 2022Copper ContributorBit quick there.. Sorry about that.
It should return something like this:
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#organization('<tenantID>')/settings/peopleInsights/$entity",
"isEnabledInOrganization": true,
"disabledForGroup": "<group object id>"
}