Skip to main content
POST
/
api
/
auth
/
reset-password
Reset Password
curl --request POST \
  --url https://api.example.com/api/auth/reset-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "new_password": "<string>"
}
'
{
  "success": true,
  "message": "<string>"
}

Body

application/json
token
string
required
new_password
string
required

Response

Successful Response

success
boolean
required
message
string
required