applications.attach_resume
Record which résumé was sent for an application
- Request
- POST
/api/v1/applications/{applicationId}/resume - Scope required
applications:write- Effect
- Changes data. Send an Idempotency-Key if you might retry it.
- Acts on
- Acts on the account’s own job search.
- MCP tool
applications_attach_resume- Environment
- Live and sandbox alike.
- Request body
- JSON.
What it does
Attaches one of this account's résumés to one of its applications, so the board remembers which version was sent for that job. An application carries at most one résumé, and attaching a second replaces the first rather than failing. Both ids must belong to this account; either one belonging to another answers 404. Undo it with `applications.detach_resume`.
Parameters
| Name | Sent in | Requirement | Accepts |
|---|---|---|---|
| applicationId | path | Required | string |
Request body
- resumeId
- string, required
Response
- applicationId
- string, required
- resumeId
- string, required
Examples
Note the résumé sent for a staff engineer role
curl -s -X POST https://www.jobapplicationtracking.com/api/v1/applications/app_123/resume \
-H "Authorization: Bearer $JAT_KEY" \
-H "Content-Type: application/json" \
-d '{
"resumeId": "rs_5"
}'{
"applicationId": "app_123",
"resumeId": "rs_5"
}