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

# List Email Templates

> List the transactional email template overrides your app has registered

Returns the transactional email template overrides registered for the store,
scoped to your app. Each row is a per-`event` override that replaces the
platform's default HTML for that transactional email at send time. Disabled
rows (`enabled: false`) are returned but skipped at send time.

**Auth:** OAuth access token with the `read_email_templates` scope.

See [Email template extensions](/extensions/email-templates) for the list of
supported `event` names and the variables available to each.

## Query Parameters

<ParamField query="event" type="string">
  Filter to a single event (e.g. `order_confirmation`). Omit to return all of
  your app's registered templates.
</ParamField>

## Response

```json theme={null}
{
  "templates": [
    {
      "id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
      "event": "order_confirmation",
      "subject": "Your order is confirmed",
      "htmlBody": "<p>Thanks for your order…</p>",
      "enabled": true,
      "appId": "a1b2c3d4-5e6f-7890-abcd-ef1234567890",
      "createdAt": "2026-06-01T10:00:00.000Z",
      "updatedAt": "2026-06-01T10:00:00.000Z"
    }
  ]
}
```

<ResponseField name="templates" type="array">
  Array of the app's registered template overrides, ordered by `event`.
</ResponseField>
