Question: Whats the difference between GET and POST for API's?
Answer: GET should be used for getting the information without changing the server's state. POST and DELETE are used for updating the server's state.
In Manex, we only POST and DELETE for updating the server's state.
|