- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2025 02:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2025 02:12 AM
Hi @ECCBV ,
Which endpoint do you use? The following one will list for you all groups:
List groups
/api/2.1/accounts/{account_id}/scim/v2/Groups
Now, if you want to list a members of the group you need to use following endpoint and provide group_id parameter:
Get group details
/api/2.1/accounts/{account_id}/scim/v2/Groups/{id}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2025 02:22 AM - edited 12-01-2025 02:25 AM
I use this endpoint:
According to the docs this should also return the members portion. List group details. | Groups API | REST API reference | Azure Databricks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2025 02:30 AM
There's a mismatch in documentation between Account SCIM 2.1 Documentation and the link you've provided:
Anyway, you can obtain members for each group using /api/2.1/accounts/{account_id}/scim/v2/Groups/{id}.
Just iterate over group ids that you can obtain via this endpoint /api/2.0/preview/scim/v2/Groups and pass group_id as a parameter.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2025 02:33 AM
Another thing you can try is to use attributes query parameter to explicitly list members attribute in your response when you're making a call to /api/2.0/preview/scim/v2/Groups