I followed the instructions in the Docs to reset an admin password via the command line:
https://cloudron.io/documentation/user-management/
The SQL query (below) does not return a reset token, that field of the table is empty.
mysql -uroot -ppassword -e "select username, email, resetToken from box.users";
I tried the appropriate version of https://my.example.com/api/v1/session/password/reset.html?reset_token=<token>&email=<email> for my instance with a blank token string in case the token was just an empty string and got:
{
"status": "Bad Request",
"message": "Missing reset_token"
}
Any Suggestions on how to get a working token would be appreciated.