> ## 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.Mail.Ticketing

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

## Typed access

`Admin.Mail.Ticketing` operations are reached via `client.Api.Mail.Ticketing` on `EksoClient`.

```csharp theme={null}
await client.Api.Mail.Ticketing.ListTicketingAsync();
```

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/mail/ticketing`           | Lists all ticketing configurations for the current tenant.                                   |
| `GET`  | `/api/mail/ticketing/{id}`      | Retrieves a single ticketing configuration by identifier.                                    |
| `GET`  | `/api/mail/ticketing/{id}/test` | Runs a test ticketing cycle for the specified configuration to verify end-to-end processing. |
| `POST` | `/api/mail/ticketing`           | Creates a new ticketing configuration for processing incoming email into tickets.            |
| `PUT`  | `/api/mail/ticketing/{id}`      | Updates an existing ticketing configuration.                                                 |

## See also

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