token (str): The reset token from the recovery email.new_password (str): The new password (8–40 characters).curl --location --globoff 'https:///auth-service/api/v2/login/reset-password' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data '{
"token": "string",
"new_password": "stringst"
}'{
"success": true,
"message": "Password updated successfully",
"data": {
"password_updated": true
}
}