Skip to main content
POST
/
resumes
/
{id}
/
lock
Set resume lock status
curl --request POST \
  --url http://localhost:3000/api/openapi/resumes/{id}/lock \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "isLocked": true
}
'
"<unknown>"

Authorizations

x-api-key
string
header
required

The API key to authenticate requests.

Path Parameters

id
string
required

The ID of the resume.

Body

application/json
isLocked
boolean
required

Whether the resume is locked.

Response

200 - application/json

The resume lock status was updated successfully.

The response is of type any.