{"info":{"_postman_id":"56dcd610-9439-462c-a24b-4223dfe348bb","name":"Book Management","description":"<html><head></head><body><p>A RESTful API for managing a collection of books. This<br>API supports basic CRUD (Create, Read, Update, Delete) operations.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"29447789","collectionId":"56dcd610-9439-462c-a24b-4223dfe348bb","publishedId":"2sA3XLEPmn","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-06-10T01:47:14.000Z"},"item":[{"name":"Create Book","id":"74458ac0-6a0e-4b00-96c0-f51a7fdfecf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"Things Fall Apart\",\r\n    \"author\": \"Chinua Achibe\",\r\n    \"publishedYear\": 1958\r\n}","options":{"raw":{"language":"json"}}},"url":"{{URL}}api/books","description":"<p>Add a new book. The book information (<strong>title, author,<br />published year</strong>) should be passed in the request body as JSON.</p>\n","urlObject":{"path":["books"],"host":["{{URL}}api"],"query":[],"variable":[]}},"response":[],"_postman_id":"74458ac0-6a0e-4b00-96c0-f51a7fdfecf8"},{"name":"Get All Books","id":"f761cbc5-fc22-4598-962b-93a489a6a388","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{URL}}api/books","description":"<p>Retrieve a list of all books.</p>\n","urlObject":{"path":["books"],"host":["{{URL}}api"],"query":[],"variable":[]}},"response":[],"_postman_id":"f761cbc5-fc22-4598-962b-93a489a6a388"},{"name":"Get Book","id":"6a1238d2-5fd5-4946-8fd4-08a19c81c6a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{URL}}api/books/:book_id","description":"<p>Retrieve details of a specific book by its ID.</p>\n","urlObject":{"path":["books",":book_id"],"host":["{{URL}}api"],"query":[],"variable":[{"type":"any","value":"","key":"book_id"}]}},"response":[],"_postman_id":"6a1238d2-5fd5-4946-8fd4-08a19c81c6a5"},{"name":"Update Book","id":"4734e1e6-8e73-494f-aed2-6fa89729f802","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"publishedYear\": 2010\r\n}","options":{"raw":{"language":"json"}}},"url":"{{URL}}api/books/:book_id","description":"<p>Update the details of a specific book by its ID. The updated information should be passed in the request body as JSON.</p>\n","urlObject":{"path":["books",":book_id"],"host":["{{URL}}api"],"query":[],"variable":[{"type":"any","value":"","key":"book_id"}]}},"response":[],"_postman_id":"4734e1e6-8e73-494f-aed2-6fa89729f802"},{"name":"Delete Book","id":"23f3893c-74ca-470b-b775-47f99e91dfbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{URL}}api/books/:book_id","urlObject":{"path":["books",":book_id"],"host":["{{URL}}api"],"query":[],"variable":[{"type":"any","value":"","key":"book_id"}]}},"response":[],"_postman_id":"23f3893c-74ca-470b-b775-47f99e91dfbc"}]}