Skip to main content
POST
/
api
/
auth
/
reset_password
/
{token}
Reset password using token
curl --request POST \
  --url https://api.example.com/api/auth/reset_password/{token} \
  --header 'Content-Type: application/json' \
  --data '
{
  "password": "new-password"
}
'

Path Parameters

token
string
required

Reset password token from email link

Body

application/json
password
string
required

New password

Example:

"new-password"

Response

200

Password reset successfully.