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

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

## Typed access

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

```csharp theme={null}
await client.Api.AccessControl.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/access-control`      | Lists all access control rules for the current tenant.                                    |
| `GET`  | `/api/access-control/{id}` | Retrieves a single access control rule by its identifier.                                 |
| `POST` | `/api/access-control`      | Creates a new access control area with default roles (View, Add, Manage, Change, Delete). |
| `PUT`  | `/api/access-control`      | Updates an existing access control rule.                                                  |

## See also

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