REST Architecture

REST web service design

Published: Sunday, 29 June 2014

REST is typically exposed over HTTP

It will use HTTP methods such as POST, PUT, GET, DELETE to manage entities on the API

  • GET is to read data
  • PUT is to update data
  • POST is to add new data
  • DELETE is to delete data