- DarkLight
New User Assigned to Existing Group
- DarkLight
When a new user is added to an existing group that is already assigned to the Entra SCIM App, Entra initiates provisioning to create the user in Campaign Manager and assign the appropriate group-based role.
.png?sv=2022-11-02&spr=https&st=2026-05-24T22%3A56%3A33Z&se=2026-05-24T23%3A06%3A33Z&sr=c&sp=r&sig=uPGPcGdJdX6IwOAEbC%2FTwRk%2BFUeN%2Fu0l6BP0iAc8ec0%3D)
Check for User Existence via
GET /Users: Entra sends aGET /Usersrequest to determine whether the user already exists in Campaign Manager.Create User via
POST /Users: If the user does not exist, Entra sends aPOST /Usersrequest to create the user in Campaign Manager. Application creates the user and assigns the provided group as the user’s initial role.Add User to Group via
PATCH /Groups/{id}: Entra then sends aPATCH /Groups/{id}request to confirm group membership:{ "op": "Add", "path": "members", "value": [{ "value": "<userEmail>" }] }Campaign Manager updates the user's Roles field:
If the user only has a placeholder role, it is replaced with the group name.
If the user already has roles, the group is appended.