v14

latestOpenAPI 3.1.02026-08-043122950.3 KB
scim

Get a SCIM group

Retrieves a group by its ID. If you provide the excludedAttributes parameter, the members attribute is not returned.

get/api/organizations/{name}/scim/v2/Groups/{groupId}

Path parameters

namestring required
groupIdstring required

Query parameters

excludedAttributes'members'

Response

SCIM Group

schemasstring[] required
idstring required
displayNamestring required
externalIdstring nullable

Example response

{
  "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:Group"
  ],
  "id": "123",
  "displayName": "Group 1",
  "members": [
    {
      "value": "john"
    }
  ],
  "externalId": "unique-identifier",
  "meta": {
    "resourceType": "Group",
    "location": "https://huggingface.co/api/organizations/:name/scim/v2/Groups/:id"
  }
}