- DarkLight
Group Unassigned from Entra App
- DarkLight
When a group is unassigned from the Entra SCIM App, Entra initiates a series of SCIM operations to remove the group and update user roles accordingly. Campaign Manager handles these operations to ensure proper cleanup and role management. 
User Deactivation via PATCH /Users: Entra sends a PATCH /Users request for each user in the group with "active": false to indicate deactivation. These requests are skipped because Campaign Manager handles user removal during the group deletion phase, not on user deactivation.
Verification via
GET /UsersandGET /Groups: Entra performsGETrequests to confirm the existence of users and the group prior to deletion.Group Deletion via
DELETE /Groups/{groupId}: Entra sends aDELETErequest to unassign the group. For each user in Campaign Manager associated with the deleted group:If the group is the only role the user has, Campaign Manager deletes the user.
If the user has multiple roles, Campaign Manager removes the unassigned group from the user’s Roles field and updates the user record accordingly.Ask ChatGP