Restful Web Apis Page
REST was sleek, efficient, and—most importantly—perfectly . The Request
UserInterface sent a message out across the web highway: GET /products/101 The Journey RESTful Web APIs
One morning, a frontend application known as "UserInterface" needed to know about a specific item in the inventory, Product #101. It didn't want to talk for long, just get the facts. REST was sleek
Later, UserInterface needed to change the price of the SuperWidget. It sent a new request: PUT /products/101 with the new data. just get the facts.
Later
Add more technical detail on (POST, PATCH, DELETE)
REST took this, updated the resource, and returned a 204 No Content code—a way of saying "I did it, but I don't need to show you the whole object again". The Departure