Skip to main content
DELETE
/
v1
/
resume
/
{id}
Delete Resume
curl --request DELETE \
  --url https://api.mokaru.ai/v1/resume/{id}
{
  "success": true
}

Overview

The Delete Resume endpoint permanently removes a resume. Applications linked to this resume are unlinked (their cvId is set to null) but not deleted. If the deleted resume was the default, another resume is automatically promoted.
Scope required: resume:write | Rate limit: 10 requests/min

Request

DELETE /v1/resume/{id}

Example

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

Response

success
boolean
Whether the resume was deleted
{
  "success": true
}
This action is permanent. The resume and its associated cover letter are deleted. Applications that were linked to this resume will have their CV reference removed but will not be deleted.