Replies: 2 comments 3 replies
-
|
The custom SCIM group property mapping can include an expression similar to this: return {
"members": [user.username for user in group.users.all()]
}The Bitwarden documentation isn't very clear on exactly what it expects the members array to include. You could try the above and modify it based on the logs from Bitwarden. Or contact their support team to confirm exactly what the members array should contain. |
Beta Was this translation helpful? Give feedback.
-
|
In the end I made it work with the following custom mapping for groups: I ended up creating an object similar to the object from the user mapping, but probably the object must contain only the fields marked as mandatory in the Bitwarden documentation (I have not tested this theory). If anyone is wondering, my mapping for the users looks like this: |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Describe your question
I am trying to include a
membersattribute in a custom SCIM group mapping.While having a look at Bitwarden's documentation about SCIM I noticed that the group mapping requires a
membersattribute in the form of an array of user objects.So, if I interpreted correctly the documentation, I need to retrieve several user information (email, username, display name, active status) for each member of the Authentik group to include in each one of the objects of the
membersarray.Has anyone had any luck in setting up this SCIM integration with Bitwarden, or has some clue on how I could make it work? Thanks.
Version and Deployment:
Beta Was this translation helpful? Give feedback.
All reactions