職缺互動
PATCH /me/applications/{id} 工作階段或 API 金鑰
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.
路徑參數
idinteger 必填- The tracking row id (from
/me/tracking).範例42
請求內容
stagestring- Application stage.範例
interview notesstring- 自由文本註釋。
curl -X PATCH "https://freehire.me/api/v1/me/applications/42" \
-H "Authorization: Bearer $FREEHIRE_API_KEY" \
-H 'Content-Type: application/json' \
-d '{"stage":"interview"}'{ "data": { "job_id": 42, "stage": "interview", "notes": null } }