What is the purpose of HTTP methods (GET, POST, PUT, DELETE) in Web APIs?
What is the purpose of HTTP methods (GET, POST, PUT, DELETE) in Web APIs?
devquora
Posted On:
Aug 14, 2023
HTTP methods define the type of operation to be performed on a resource. GET retrieves data, POST creates new data, PUT updates data, and DELETE removes data.