Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Tags
#REST
Question
Basic REST HTTP methods
Answer

Use URLs to specify the resources you want to work with. Use the HTTP methods to specify what to do with this resource. With the five HTTP methods GET, POST, PUT, PATCH and DELETE you can provide CRUD functionality (Create, Read, Update, Delete) and beyond.

  • Read: Use GET for reading resources.
  • Create: Use POST or PUT for creating new resources.
  • Update: Use PUT and PATCH for updating existing resources.
  • Delete: Use DELETE for deleting existing resources.

Tags
#REST
Question
Basic REST HTTP methods
Answer
?

Tags
#REST
Question
Basic REST HTTP methods
Answer

Use URLs to specify the resources you want to work with. Use the HTTP methods to specify what to do with this resource. With the five HTTP methods GET, POST, PUT, PATCH and DELETE you can provide CRUD functionality (Create, Read, Update, Delete) and beyond.

  • Read: Use GET for reading resources.
  • Create: Use POST or PUT for creating new resources.
  • Update: Use PUT and PATCH for updating existing resources.
  • Delete: Use DELETE for deleting existing resources.
If you want to change selection, open document below and click on "Move attachment"

RESTful API Design. Best Practices in a Nutshell.
HTTP methods on a small set of URLs. See next section. HTTP Methods Use HTTP Methods to Operate on your Resources GET /employees GET /employees?state=external POST /employees PUT /employees/56 <span>Use URLs to specify the resources you want to work with. Use the HTTP methods to specify what to do with this resource. With the five HTTP methods GET, POST, PUT, PATCH and DELETE you can provide CRUD functionality (Create, Read, Update, Delete) and beyond. Read: Use GET for reading resources. Create: Use POST or PUT for creating new resources. Update: Use PUT and PATCH for updating existing resources. Delete: Use DELETE for deleting existing resources. Understand the Semantics of the HTTP Methods Definition of Idempotence : A HTTP methods is idempotent when we can safely execute the request over and over again and all requests lead to

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.