types of method in api

Solutions on MaxInterview for types of method in api by the best coders in the world

showing results for - "types of method in api"
Judah
12 May 2018
1GET	is used for reading and retrieving data.
2POST	is used for inserting data.
3PUT	is used for updating data.
4DELETE	is used for deleting data.
5
6The primary or most-commonly-used HTTP verbs (or methods, as they are properly called) are POST, GET, PUT, PATCH, and DELETE. These correspond to create, read, update, and delete (or CRUD) operations, respectively.
similar questions
queries leading to this page
types of method in api