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

# Admin.UserGroup

> Typed SDK access to the Admin.UserGroup resource — methods and HTTP routes.

## Typed access

`Admin.UserGroup` operations are reached via `client.Api.Security.UserGroup` on `EksoClient`.

```csharp theme={null}
await client.Api.Security.UserGroup.ListUserGroupAsync();
```

For the full set of methods and request/response types, your IDE's auto-completion
is the fastest discovery path. Each method below maps 1-to-1 to an HTTP route in
the [API Reference](/api-reference/introduction).

## Operations

| Method   | Route                           | Summary                                                                                            |
| -------- | ------------------------------- | -------------------------------------------------------------------------------------------------- |
| `GET`    | `/api/security/user-group`      | Lists all user groups for the current tenant, ordered by name.                                     |
| `GET`    | `/api/security/user-group/{id}` | Retrieves a single user group by its identifier.                                                   |
| `POST`   | `/api/security/user-group`      | Creates a new custom user group (super admin only).                                                |
| `PUT`    | `/api/security/user-group`      | Updates an existing user group (super admin only, system groups cannot be deleted via update).     |
| `DELETE` | `/api/security/user-group/{id}` | Deletes a custom user group by its identifier (super admin only, system groups cannot be deleted). |

## See also

* [SDK overview](/sdk/overview)
* [Authentication](/sdk/authentication)
* [Quickstart](/sdk/quickstart)
* [Error handling](/sdk/error-handling)
