diff --git a/authentik/providers/scim/clients/group.py b/authentik/providers/scim/clients/group.py index b0222590d..a2c0cad3b 100644 --- a/authentik/providers/scim/clients/group.py +++ b/authentik/providers/scim/clients/group.py @@ -130,10 +130,8 @@ class SCIMGroupClient(SCIMClient[Group, SCIMGroupSchema]): scim_group.id, PatchOperation( op=PatchOp.replace, - value={ - "id": connection.id, - "displayName": group.name, - }, + path="displayName", + value=scim_group.displayName, ), )