v14

latestOpenAPI 3.1.02026-08-043122950.3 KB
scim

Update a SCIM group

Updates a group by its ID. The group name must be unique within the organization.

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

Path parameters

namestring required
groupIdstring required

Request body

schemasstring[] required
displayNamestring required
externalIdstring

Example request

{
  "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:Group"
  ]
}

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"
  }
}