Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 726 Bytes

File metadata and controls

12 lines (8 loc) · 726 Bytes

Wave 04: Read, Update, Delete

RESTful Endpoints: Read, Update, and Delete

Create the following endpoints, with similar functionality presented in the Hello Books API:

As a client, I want to send a request...

  1. ...to get one existing planet, so that I can see the id, name, description, and other data of the planet.
  2. ... with valid planet data to update one existing planet and get a success response, so that I know the API updated the planet data.
  3. ... to delete one existing planet and get a success response, so that I know the API deleted the planet data..