1.

Name HTTP methods that can be used with RESTful web services.

Answer»

Some of the HTTP METHODS that can be used with RESTful web services include: 

  • GET: Used to get and read a resource. 
  • POST: Used to create a new resource. 
  • PUT: Used to update existing resources. 
  • DELETE: Used to delete the resource. 
  • PATCH: Used to APPLY partial MODIFICATIONS to a resource.


Discussion

No Comment Found