v1

latestOpenAPI 3.1.0MITraw.githubusercontent.com2024-06-0581319.8 KB
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"
}