Job interactions
PATCH /me/applications/{id} Session or API key
Set the application stage and/or notes, addressed by row id.
Same as PATCH /jobs/{slug}/track, but addressed by the tracking-board row id instead of the job slug — needed when a tracked application’s posting was later pruned and has no slug left to address it by. Same stage vocabulary and body shape.
Path parameters
idinteger required- The tracking row id (from
/me/tracking).Example42
Body
stagestring- Application stage.Example
interview notesstring- Free-text notes.
curl -X PATCH "https://freehire.me/api/v1/me/applications/42" \
-H "Authorization: Bearer $HIREALL_API_KEY" \
-H 'Content-Type: application/json' \
-d '{"stage":"interview"}'{ "data": { "job_id": 42, "stage": "interview", "notes": null } }