Junior REST API

What is the role of HTTP in RESTful APIs?

HTTP provides the transport mechanism and defines methods:

  • GET → Retrieve data
  • POST → Create resource
  • PUT → Update resource
  • DELETE → Remove resource
  • PATCH → Partial update

More from ASP.NET Core Web API Tutorial

All questions for this course