Skip to main content
GET
/
resumes
/
{resumeId}
/
versions
List resume version history
curl --request GET \
  --url http://localhost:3000/api/openapi/resumes/{resumeId}/versions \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "<string>",
    "label": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

x-api-key
string
header
required

The API key to authenticate requests.

Path Parameters

resumeId
string
required

The ID of the resume whose version history to list.

Response

200 - application/json

A list of recent version snapshots, newest first.

id
string
required

The ID of the version snapshot.

label
string
required

A short description of what triggered the snapshot.

createdAt
string<date-time>
required

The date and time the snapshot was taken.