Skip to main content

resumes.delete

Delete a résumé

Request
DELETE/api/v1/resumes/{resumeId}
Scope required
resumes:write
Effect
Deletes something. Confirm with a person before calling it.
Acts on
Acts on the account’s own job search.
MCP tool
resumes_delete
Environment
Live and sandbox alike.
Request body
JSON.

What it does

Removes a résumé and its stored file, and detaches it from every application that recorded it as the one sent. The applications themselves are untouched; they simply stop naming a résumé. This cannot be undone, and a résumé belonging to another account answers 404. Answers 204 with no body. To stop one application naming a résumé without deleting the file, use `applications.detach_resume`.

Parameters

Parameters this endpoint accepts, where each one goes, and whether it is required
NameSent inRequirementAccepts
resumeIdpathRequiredstring

Response

Answers 204 with no body.

Examples

Remove a résumé no longer being sent

Remove a résumé no longer being sent — request
curl -s -X DELETE https://www.jobapplicationtracking.com/api/v1/resumes/rs_5 \
  -H "Authorization: Bearer $JAT_KEY"
Remove a résumé no longer being sent — response
null

Related operations