Definition
HTTP Method
Methods
GET
Definition
Link to originalGET (HTTP)
GETis an HTTP method that requests a representation of the identified resource. AGETrequest should have no side effects: reading the resource must not insert, modify, or delete data. Parameters are carried in the URL query string, so aGETrequest has no body.
POST
Definition
Link to originalPOST (HTTP)
POSTis an HTTP method that submits data to the server for processing. Unlike GET, aPOSTrequest may have side effects — for example inserting or removing records — and carries its parameters in the request body, described by theContent-Typerequest header.