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

# Label

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

## Typed access

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

```csharp theme={null}
await client.Api.Label.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/label`      | Lists all labels for the current tenant.              |
| `GET`    | `/api/label/{id}` | Retrieves a single label by its identifier.           |
| `POST`   | `/api/label`      | Creates a new label (super admin only).               |
| `PUT`    | `/api/label`      | Updates an existing label (super admin only).         |
| `DELETE` | `/api/label/{id}` | Deletes a label by its identifier (super admin only). |

## See also

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