# List mailbox errors

List mailbox send/sync errors for debugging. Shows errors with timestamps and details.

Endpoint: GET /emails/api/mailbox-errors
Version: 2.0.0
Security: bearerAuth

## Query parameters:

  - `limit` (integer)
    Items per page (default 20).
    Example: 20

  - `offset` (integer)
    Items to skip (default 0).

  - `order_field` (string)
    Sort field (default created_at).
    Example: "created_at"

  - `order_type` (string)
    Sort direction.
    Enum: "asc", "desc"

  - `search` (string)
    Search errors.

## Response 200 fields (application/json):

  - `data` (array)

  - `data.uuid` (string)

  - `data.team_id` (integer)

  - `data.mailbox_uuid` (string)

  - `data.error_type` (string)

  - `data.message` (string)

  - `data.created_at` (string)


