Skip to main content
DELETE
/
v1
/
tracker
/
applications
/
{id}
Delete Application
curl --request DELETE \
  --url https://api.mokaru.ai/v1/tracker/applications/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

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.

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.
Scope required: tracker:write | Rate limit: 10 requests/min

Request

DELETE /v1/tracker/applications/{id}

Example

curl -X DELETE "https://api.mokaru.ai/v1/tracker/applications/clx1234" \
  -H "Authorization: Bearer mk_your_key"

Response

success
boolean
Whether the application was deleted
{
  "success": true
}
This action is permanent. The application and its timeline entries will be removed. Any linked resume will be unlinked but not deleted.