> ## 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.User

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

## Typed access

`Admin.User` operations are reached via `client.Api.User` on `EksoClient`.

```csharp theme={null}
await client.Api.User.ListAsync();
```

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/user`      | Lists all users for the current tenant.                                                      |
| `GET`    | `/api/user/{id}` | Retrieves a single user by their identifier (non-admins can only retrieve their own record). |
| `POST`   | `/api/user`      | Creates a new user (super admin only).                                                       |
| `PUT`    | `/api/user`      | Updates an existing user (non-admins can only update their own record).                      |
| `DELETE` | `/api/user/{id}` | Deletes a user by their identifier (super admin only).                                       |

## See also

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