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

> Delete an education entry

## Overview

The Delete Education endpoint permanently removes an education entry from your account.

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

## Request

```bash theme={null}
DELETE /v1/education/{id}
```

### Path Parameters

<ParamField path="id" type="string" required>
  The education entry's unique ID
</ParamField>

### Query Parameters

<ParamField query="cvId" type="string">
  Target a specific resume by its id (from `list-resumes`). Omit to use your base/default resume; the resume must be self-contained.
</ParamField>

### Example

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

## Response

<ResponseField name="success" type="boolean">Whether the education was deleted</ResponseField>

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

<Warning>
  This action is permanent. The education entry will be removed from your base resume.
</Warning>
