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

# Delete Email Component

> Delete an email component.

# Delete Email Component

You can delete a component. Emails that already rendered it keep their copied blocks, so deleting does not change existing emails.

Deleting the component pinned as the default footer makes new emails fall back to the footer Sequenzy generates from your company profile.

## Request

<ParamField path="componentId" type="string" required>
  Email component ID.
</ParamField>

```bash theme={null}
curl -X DELETE "https://api.sequenzy.com/api/v1/email-components/cmp_123" \
  -H "Authorization: Bearer API_KEY"
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "id": "cmp_123"
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Invalid API key"
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": "Component not found"
  }
  ```
</ResponseExample>
