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

> Delete an application from the tracker

## Overview

The Delete Application endpoint permanently removes an application from your tracker, including its timeline entries.

**Common use cases:**

* **Cleanup** - remove duplicate or outdated applications from your tracker.
* **Automation** - automatically remove applications for jobs that are no longer available.
* **Bulk management** - programmatically clean up your application pipeline.

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

## Request

```bash theme={null}
DELETE /v1/tracker/applications/{id}
```

### Example

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

## Response

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

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

<Warning>
  This action is permanent. The application and its timeline entries will be removed. Any linked resume will be unlinked but not deleted.
</Warning>
