{"info":{"_postman_id":"4bee4ee5-9d1d-4975-a4cc-6e9d90879e42","name":"Go Rest Api Example","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"5019276","collectionId":"4bee4ee5-9d1d-4975-a4cc-6e9d90879e42","publishedId":"SWDze1f2","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2019-12-01T10:25:44.000Z"},"item":[{"name":"Get All Books","id":"30055961-f56c-482c-b7f8-ff7ca08a558a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"localhost:8080/book","urlObject":{"port":"8080","path":["book"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"2ee226dd-5f59-4f46-b455-b1cf4b4dd1d3","name":"Get All Books","originalRequest":{"method":"GET","header":[],"url":"localhost:8080/book"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Sun, 01 Dec 2019 10:14:49 GMT"},{"key":"Content-Length","value":"98"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"title\": \"Example Tittle\",\n            \"year\": 2019,\n            \"author\": \"Example Author\"\n        }\n    ]\n}"}],"_postman_id":"30055961-f56c-482c-b7f8-ff7ca08a558a"},{"name":"Get Book","id":"649b2428-008a-43f4-ad20-433f0b0b7c12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"localhost:8080/book/:id","urlObject":{"port":"8080","path":["book",":id"],"host":["localhost"],"query":[],"variable":[{"type":"string","value":"1","key":"id"}]}},"response":[{"id":"6f82ea9e-6320-49ea-bd39-de45acbc7774","name":"Get Book","originalRequest":{"method":"GET","header":[],"url":{"raw":"localhost:8080/book/:id","host":["localhost"],"port":"8080","path":["book",":id"],"variable":[{"key":"id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Sun, 01 Dec 2019 10:15:50 GMT"},{"key":"Content-Length","value":"96"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": {\n        \"id\": \"1\",\n        \"title\": \"Example Tittle\",\n        \"year\": 2019,\n        \"author\": \"Example Author\"\n    }\n}"}],"_postman_id":"649b2428-008a-43f4-ad20-433f0b0b7c12"},{"name":"Create Book","id":"7d0ffbd5-06cb-458b-968e-70bfe1042559","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"title\": \"Clean Architecture\",\n    \"year\": 2017,\n    \"author\": \"Robert C. Martin\"\n}"},"url":"localhost:8080/book","urlObject":{"port":"8080","path":["book"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"a92d9c36-5700-4721-aee3-53b78441c2bd","name":"Create Book","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"title\": \"Clean Architecture\",\n    \"year\": 2017,\n    \"author\": \"Robert C. Martin\"\n}"},"url":"localhost:8080/book"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Sun, 01 Dec 2019 10:19:29 GMT"},{"key":"Content-Length","value":"137"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": {\n        \"id\": \"b5b56551-4400-47f9-ba52-c46c1ef209ba\",\n        \"title\": \"Clean Architecture\",\n        \"year\": 2017,\n        \"author\": \"Robert C. Martin\"\n    }\n}"}],"_postman_id":"7d0ffbd5-06cb-458b-968e-70bfe1042559"},{"name":"Update Book","id":"da94a8a0-351f-4147-a863-7dd65c243e6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"title\": \"Clean Architecture\",\n    \"year\": 2017,\n    \"author\": \"Robert C. Martin\"\n}"},"url":"localhost:8080/book/:id","urlObject":{"port":"8080","path":["book",":id"],"host":["localhost"],"query":[],"variable":[{"type":"string","value":"1","key":"id"}]}},"response":[{"id":"d7baeda1-76b1-4591-b530-d23fa09b07c6","name":"Update Book","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"title\": \"Clean Architecture\",\n    \"year\": 2017,\n    \"author\": \"Robert C. Martin\"\n}"},"url":{"raw":"localhost:8080/book/:id","host":["localhost"],"port":"8080","path":["book",":id"],"variable":[{"key":"id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Sun, 01 Dec 2019 10:23:02 GMT"},{"key":"Content-Length","value":"102"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": {\n        \"id\": \"1\",\n        \"title\": \"Clean Architecture\",\n        \"year\": 2017,\n        \"author\": \"Robert C. Martin\"\n    }\n}"}],"_postman_id":"da94a8a0-351f-4147-a863-7dd65c243e6a"},{"name":"Delete Book","id":"a96f5b87-2155-4c63-ba28-85518b7061f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"localhost:8080/book/:id","urlObject":{"port":"8080","path":["book",":id"],"host":["localhost"],"query":[],"variable":[{"type":"string","value":"2059918d-bf8b-48c0-a697-b29a9550ac20","key":"id"}]}},"response":[{"id":"1ab38037-5c97-4a45-bec8-0e3fee8e90ed","name":"Delete Book","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"localhost:8080/book/:id","host":["localhost"],"port":"8080","path":["book",":id"],"variable":[{"key":"id","value":"2059918d-bf8b-48c0-a697-b29a9550ac20"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Sun, 01 Dec 2019 10:21:59 GMT"},{"key":"Content-Length","value":"27"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": null\n}"}],"_postman_id":"a96f5b87-2155-4c63-ba28-85518b7061f5"}],"variable":[{"key":"host","value":"localhost:8080"}]}