When calling REST Service Endpoints, you will need to specify a HTTP Method.
The main four HTTP methods used are:
- GET – Used to retrieve data. The HTTP Request cannot have a Body.
- POST – Used to send data.
- PUT – Used to update data that already exists on the server.
- DELETE – Used to delete data from the server.
For more information on HTTP Methods, see the Mozilla documentation.