Skip to content

REST Architecture

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