I'm developing a restFull API.
I have this route: /senha
No POST
I save the password;
No PUT
I update the password;
No DELETE
I delete the password;
No GET
I call the password;
But when I use GET
in addition to calling, I update a field by modifying status
of it.
I just need another method to call the password again, but this time without updating the status.
What would be the HTTP
method most appropriate for this?