If for any reason you loose your password, you can change it with this operation by sending a GET request to https://nacp01.noraina.net/api/reset/ and appending the username's email.
As an example, if the email you used to register is [email protected], to reset your password using curl, you should execute this command:
curl --location --request GET 'https://nacp01.noraina.net/api/reset/[email protected]'
And the response should look like this:
{
"status": "success",
"data": {
"message": "Check your mail in a few moments to get your new password."
}
}
Attention! For security reasons, you wont get any error information when using a mispelled or inexistant e-mail. Also bear in mind that there is a request limit to prevent brute force attacks.