---
title: "Create user group"
method: POST
path: "/scim/v2/groups"
tags: ["User groups"]
---

# Create user group

`POST /scim/v2/groups`

Create a [user group](/administration/users/groups). To manage model and connection role assignments for user groups, see the [User group model role APIs](/api/user-group-model-roles).

## Request body

- object
  - `displayName` string, required — The name of the group. Names must be 64 characters or less.
  - `members` object[] — A list of users to add as group members. Each member should be specified as an object containing a user ID.
    - `value` string — The user's unique identifier

## Response `201`

Group created successfully

- ScimGroup
  - `id` string — Unique identifier for the group
  - `displayName` string — The name of the group
  - `members` object[] — The list of users in the group
    - `value` string — The user's unique identifier
    - `display` string — The user's email address
  - `meta` object — Metadata about the group resource
    - `resourceType` string — The type of resource. This will be `Group`.
    - `created` string, date-time — The time the group was created
    - `lastModified` string, date-time — The time the group was last updated
  - `schemas` string[] — SCIM schema information for the group

## Other responses

- `429` — Too Many Requests - Rate limit exceeded (60 requests/minute)

---

[API](https://skmtc.net/omni/apis/omni-api.md) · [All operations](https://skmtc.net/omni/apis/omni-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/omni/omni-api/versions/6b02f7349d0e/schema)
