Skip to main content
POST
/
resumes
/
{username}
/
{slug}
/
password
/
verify
Verify resume password
curl --request POST \
  --url http://localhost:3000/api/openapi/resumes/{username}/{slug}/password/verify \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "password": "<string>"
}
'
true

Authorizations

x-api-key
string
header
required

The API key to authenticate requests.

Path Parameters

username
string
required

The username of the resume owner.

Minimum string length: 1
slug
string
required

The slug of the resume.

Minimum string length: 1

Body

application/json
password
string
required

The password to verify.

Minimum string length: 1

Response

200 - application/json

The password was verified successfully and access has been granted.

The response is of type boolean.