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
| Name | Sent in | Requirement | Accepts |
|---|---|---|---|
| resumeId | path | Required | string |
Response
Answers 204 with no body.
Examples
Remove a résumé no longer being sent
curl -s -X DELETE https://www.jobapplicationtracking.com/api/v1/resumes/rs_5 \
-H "Authorization: Bearer $JAT_KEY"null