Books
Add a new book
Adds a new book to the bookstore
post/books
Request body
Example request
{
"id": 1,
"title": "Clean Code",
"description": "A Handbook of Agile Software Craftsmanship",
"price": 2999,
"category": "Programming"
}Response
Book created successfully
Example response
{
"id": 1,
"title": "Clean Code",
"description": "A Handbook of Agile Software Craftsmanship",
"price": 2999,
"category": "Programming"
}