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

# Delete Cover Letter

> Permanently delete a cover letter

## Overview

Permanently delete a cover letter. The parent resume is unaffected. Cannot be undone - confirm with the user before calling.

<Note>
  **Scope required:** `cover-letter:write` | **Rate limit:** 10 requests/min
</Note>

## Request

```bash theme={null}
DELETE /v1/cover-letter/{id}
```

### Path Parameters

<ParamField path="id" type="string" required>
  Cover letter id to delete
</ParamField>

### Example

```bash theme={null}
curl -X DELETE "https://api.mokaru.ai/v1/cover-letter/clx_cl_abc" \
  -H "Authorization: Bearer mk_your_key"
```

## Response

<ResponseField name="success" type="boolean">Whether the cover letter was deleted.</ResponseField>

```json theme={null}
{ "success": true }
```
