Skip to main content
PATCH
/
v2
/
auth
/
reset-password
/
{reset-token}
Reset password with email token
curl --request PATCH \
  --url https://api.example.com/v2/auth/reset-password/{reset-token} \
  --header 'Content-Type: application/json' \
  --data '
{
  "password": "<string>",
  "confirmPassword": "<string>"
}
'
{
  "error": "<string>"
}

Path Parameters

reset-token
string
required

Body

application/json
password
string<password>
required
confirmPassword
string<password>
required

Response

OK