Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 325 Bytes

File metadata and controls

7 lines (7 loc) · 325 Bytes

REST API (Representational State Transfer)

  • POST = create something (POST/orders = create an order) to the server
  • GET = get something from the server
  • DELETE = delete something from the server
  • PUT = Replaces data on the server
  • PATCH = Partially updates data on the server
  • HEAD = Same as GET but without the body