Back to Concepts
#08

REST API

REST (Representational State Transfer) is a popular architectural style for APIs. It uses standard HTTP methods to perform actions on resources (data objects).

  • GET Retrieve a resource (Read).
  • POST Create a new resource.
  • PUT Update an existing resource (Replace).
  • DELETE Remove a resource.
GET
POST
PUT
Database Resources
Ready...