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
HTTP provides the transport mechanism and defines methods: