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

# Container

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

## Typed access

`Container` operations are reached via `client.Api.Container` on `EksoClient`.

```csharp theme={null}
await client.Api.Container.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/container`                                 | Lists all containers the current user has view permission for. |
| `GET`    | `/api/container/{containerId}/filter`            | Lists all filters for a container.                             |
| `GET`    | `/api/container/{containerId}/filter/{filterId}` | Retrieves a single filter within a container.                  |
| `GET`    | `/api/container/{id}`                            | Retrieves a single container by its identifier.                |
| `POST`   | `/api/container`                                 | Creates a new container.                                       |
| `POST`   | `/api/container/{containerId}/filter`            | Creates a new filter within a container.                       |
| `POST`   | `/api/container/{id}/sequence`                   | Re-sequences item numbers within a container.                  |
| `PUT`    | `/api/container`                                 | Updates an existing container.                                 |
| `PUT`    | `/api/container/{containerId}/filter/{filterId}` | Updates an existing filter within a container.                 |
| `DELETE` | `/api/container/{containerId}/filter/{filterId}` | Deletes a filter from a container.                             |
| `DELETE` | `/api/container/{id}`                            | Deletes a container by its identifier.                         |

## See also

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