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

# Delete Email Template

> Remove one of your app's email template overrides

Removes a template override your app registered. After deletion the affected
event falls back to the platform default HTML. Only templates owned by your
app can be deleted.

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

## Path Parameters

<ParamField path="id" type="string" required>
  The template `id` returned by [List](/api-reference/email-templates/list) or
  [Create](/api-reference/email-templates/create).
</ParamField>

## Response

```json theme={null}
{
  "status": 200,
  "message": "deleted"
}
```

An `id` that doesn't exist, or that belongs to a different app, returns
`404 { "error": "Not found" }` — a template is only deletable by the app that
registered it.
