Books

Add a new book

Adds a new book to the bookstore

post/books

Request body

OR
OR

Example request

{
  "id": 1,
  "title": "Clean Code",
  "description": "A Handbook of Agile Software Craftsmanship",
  "price": 2999,
  "category": "Programming"
}

Response

Book created successfully

OR
OR

Example response

{
  "id": 1,
  "title": "Clean Code",
  "description": "A Handbook of Agile Software Craftsmanship",
  "price": 2999,
  "category": "Programming"
}

Changes