REST-ish Book Store API

  • GET /books - Get some data about all books in the system
  • GET /books/abc123 - Get details about a book with the ID abc123
  • POST /books - Create a new book (request body gives details)
  • PUT /books/abc123 - Update book abc123 to a new state (request body defines)
  • DELETE /books/abc123 - Remove the record for book abc123

9 / 31