0
I am developing a restfull API.
I have this route: /senha
In the POST
I saved the password;
In the PUT
i update the password;
In the DELETE
i delete the password;
In the GET
I call the password;
Only by using the GET
besides calling, I update a field modifying the status
of the same.
Only I need another method to be able to call the password again, but this time without updating the status.
What would be the HTTP
method best suited for this?