Skip to main content

HTTP Request Methods

note

These request methods are used by HTTP function.

IDMethodDescription
1HTTP_GETSends a regular HTTP request.
GET request is used to read/retrieve data from a web server. GET returns an HTTP status code of 200 (OK) if the data is successfully retrieved from the server.
2HTTP_POSTSends a HTTP request with POST data.
POST request is used to send data to the server. On successful creation, it returns an HTTP status code of 201.
3HTTP_HEADSends a regular HTTP request, but ignores any response data - returning only the response code.
HEAD method is used to request the response headers for a specific resource without receiving the actual content of the resource.