# List email templates

`GET https://api.cademi.com.br/api/v3/settings/emails/templates`

Operation ID: `settings.emails.templates.list` · API v3

Returns the complete email template catalog in a single response. The catalog is fixed: templates cannot be created or deleted.

Required permissions: `settings.read`.

## Responses

### 200

Returns the email template catalog.

Body: `data`: array of EmailTemplate.

Fields of EmailTemplate:

| Field | Type | Required | Description |
|---|---|---|---|
| `body` | string or null | yes |  |
| `editable` | boolean | yes |  |
| `enabled` | boolean | yes |  |
| `id` | string, one of `sale`, `import`, `free`, `new_access` | yes |  |
| `include_credentials` | boolean | yes |  |
| `name` | string | yes |  |
| `object` | string, one of `email_template` | yes |  |
| `revision` | string | yes |  |
| `variables` | array of object | yes |  |

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

Full schema: https://cademi.dev/openapi/v3.json
