route path
route request controller
Endpoint with method GET
The purpose of the GET method is to simply retrieve data from the server. The GET method is used to request any of the following resources:
route path
route request controller
Endpoint with method OPTIONS
The HTTP OPTIONS method returns a listing of which HTTP methods are supported and allowed.
route path
route request controller
Endpoint with method PATCH
The PATCH HTTP request method sends data to the server for editing part of a data.
route path
route request controller
Endpoint with method POST
The POST HTTP request method sends data to the server for processing.
The data sent to the server is typically in the following form:
route path
route request controller
Endpoint with method PUT
The PUT HTTP request method sends data to the server for replacing and changing full state.
route path
route request controller
Endpoint with method DELETE
The DELETE HTTP request method sends data to the server for deleting a data.