Skip to main content
POST
/
frontend
/
api
/
v1
/
auth
/
password-restore-verify
Verify Password restore / create token and generate token for password update
curl --request POST \
  --url https://{host}/frontend/api/v1/auth/password-restore-verify \
  --header 'Content-Type: application/json' \
  --header 'X-Recaptcha-Token: <x-recaptcha-token>' \
  --data '
{
  "password-restore-token": "<string>"
}
'
{
  "password-update-token": "<string>",
  "password-update-token-created": "2023-11-07T05:31:56Z",
  "password-update-token-expire": "2023-11-07T05:31:56Z",
  "success": true
}

Headers

X-Recaptcha-Token
string
required
Minimum string length: 6

Body

application/json
password-restore-token
string<jwt>

Password restore Verification token.

Response

200 - application/json

OK

password-update-token
string<jwt>

Token for password update.

password-update-token-created
string<date-time>

Token for password update created time.

password-update-token-expire
string<date-time>

Token for password update expiration time.

success
boolean