Simple guide to help you on your web-dev journey
View the Project on GitHub KeaCluster/bookstoreAPI-spring-guide
Try using postman to add, get, delete and update one or more of our entities through requests.
http://localhost:{PORT}/api/books/
{
"name": "Frankenstein",
"author": "Mary W Shelly",
"stock": 3,
"price": 29.99
}
http://localhost:{PORT}/api/books/{bookid}
bookid
with an actual existing ID.{
"title": "Updated Book Title",
"author": "Updated Author Name",
"stock": 15,
"price": 25.99
}
http://localhost:{PORT}/api/books/{bookId}