> ## Documentation Index
> Fetch the complete documentation index at: https://docs.omni.co/llms.txt
> Use this file to discover all available pages before exploring further.

# SCIM commands - Omni CLI

> Reference for the omni scim command group: SCIM user and group provisioning.

SCIM user and group provisioning, including embed users. See the [Users API](/api/users) and [User groups API documentation](/api/user-groups) for more information.

```bash wrap theme={null}
omni scim <command>
```

| Command              | Description          |
| -------------------- | -------------------- |
| `users-list`         | List SCIM users      |
| `users-create`       | Create a SCIM user   |
| `users-get`          | Get a SCIM user      |
| `users-replace`      | Replace a SCIM user  |
| `users-update`       | Update a SCIM user   |
| `users-delete`       | Delete a SCIM user   |
| `embed-users-list`   | List embed users     |
| `embed-users-get`    | Get an embed user    |
| `embed-users-delete` | Delete an embed user |
| `groups-list`        | List SCIM groups     |
| `groups-create`      | Create a SCIM group  |
| `groups-get`         | Get a SCIM group     |
| `groups-replace`     | Replace a SCIM group |
| `groups-update`      | Update a SCIM group  |
| `groups-delete`      | Delete a SCIM group  |

```bash wrap theme={null}
# List maximum of 10 groups
omni scim groups-list --count "10"

# View help for users-create command, including arguments and flag details
omni scim users-create --help
```

<Note>
  Every command in this group also accepts the [global flags](/developers/cli/reference/global-flags), including `--token`, `--profile`, `--format`, and `--compact`.
</Note>
