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

# List Email Transactionals (Deprecated)

> Retrieve list of email transactionals - deprecated endpoint

<Warning>
  **This endpoint is deprecated and will be removed on June 1, 2026.** Please migrate to the new [List Email
  Templates](/api-reference/messaging-channels/email/list-templates) endpoint.
</Warning>

## Why This Is Deprecated

This endpoint has been replaced with a clearer, more consistent API structure.

### Use the New Endpoint Instead

**New endpoint**: `GET /api/templates/email`

[View new endpoint documentation →](/api-reference/messaging-channels/email/list-templates)

## Migration

The new endpoint provides more information and better filtering:

### Old Response (This Endpoint)

```json theme={null}
{
  "templates": [
    {
      "uid": "abc123",
      "name": "Order Confirmation"
    }
  ]
}
```

### New Response (Recommended)

```json theme={null}
{
  "data": [
    {
      "id": "tmpl_abc123",
      "name": "Order Confirmation",
      "subject": "Your order is confirmed",
      "status": "active",
      "category": "transactional",
      "createdAt": "2025-10-01T10:00:00Z",
      "variables": ["orderNumber", "customerName"]
    }
  ]
}
```

**Benefits of new endpoint**:

* ✅ More template metadata
* ✅ Status and category information
* ✅ List of template variables
* ✅ Timestamps for auditing
* ✅ Consistent naming (`id` instead of `uid`)

## Migration Deadline

This endpoint will be removed on **June 1, 2026**.

[Read the full migration guide →](/api-reference/legacy/introduction)

## Need Help?

* [Migration Guide](/api-reference/legacy/introduction)
* [New Email Templates API](/api-reference/messaging-channels/email/list-templates)
* [Contact Support](mailto:info@minimo.it)
