Skip to main content
POST
/
auth
/
reset-password
Reset password
curl --request POST \
  --url https://api.example.com/auth/reset-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "reset-token-uuid",
  "newPassword": "newpassword123"
}
'
{
  "message": "Password has been reset successfully"
}

Body

application/json
token
string
required
Example:

"reset-token-uuid"

newPassword
string
required
Example:

"newpassword123"

Response

Password reset successful

message
string
required
Example:

"Password has been reset successfully"