履歷建立與客製化
POST /me/cvs/{id}/revisions/{rid}/undo 僅限工作階段
Reverse one revision, leaving later edits in place.
The undo is itself recorded as a new revision. A 409 when the entry has nothing to reverse or the part of the document it changed is already gone.
路徑參數
idstring (uuid) 必填- 履歷 ID。
ridstring (uuid) 必填- The revision id, from the history feed.
curl -X POST "https://freehire.me/api/v1/me/cvs/0f2c…/revisions/b1a2…/undo" -b cookies.txt{
"data": {
"cv": { "id": "0f2c…", "title": "Backend engineer", "template_id": "classic", "created_at": "2026-07-01T10:00:00Z", "updated_at": "2026-07-28T20:15:00Z" },
"revision": { "id": "c4d5…", "actor": "user", "origin": "editor", "title": "Undid \"Reframed 2 bullets toward Kafka\"", "reverts_id": "b1a2…", "reverted": false, "undoable": false, "paths": ["experience[0].bullets[1]"], "created_at": "2026-07-28T20:15:00Z" }
}
}