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

# ContentTemplate

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

## Typed access

`ContentTemplate` operations are reached via `client.Api.Template.Content` on `EksoClient`.

```csharp theme={null}
await client.Api.Template.Content.ListContentAsync();
```

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/template/content`      | Lists all content templates for the current tenant.    |
| `GET`    | `/api/template/content/{id}` | Retrieves a single content template by its identifier. |
| `POST`   | `/api/template/content`      | Creates a new content template.                        |
| `PUT`    | `/api/template/content`      | Updates an existing content template.                  |
| `DELETE` | `/api/template/content/{id}` | Deletes a content template by its identifier.          |

## See also

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