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

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

## Typed access

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

```csharp theme={null}
await client.Api.Mail.Mailbox.ListMailboxAsync();
```

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/mailbox`           | Lists all mailbox configurations with decrypted credentials.                       |
| `GET`  | `/api/mail/mailbox/{id}`      | Retrieves a single mailbox configuration by identifier with decrypted credentials. |
| `GET`  | `/api/mail/mailbox/{id}/test` | Tests connectivity to the mail server for the specified mailbox.                   |
| `POST` | `/api/mail/mailbox`           | Creates a new mailbox configuration, encrypting credentials before storage.        |
| `PUT`  | `/api/mail/mailbox/{id}`      | Updates an existing mailbox configuration, encrypting credentials before storage.  |

## See also

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