v13

OpenAPI 3.1.02026-08-033122950.3 KB
scim

Create a SCIM group

Creates a new group in the organization. The group name must be unique within the organization.

post/api/organizations/{name}/scim/v2/Groups

Path parameters

namestring required

Request body

displayNamestring required
externalIdstring

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