{"info":{"_postman_id":"903a586a-dd39-4212-9dc7-1a4b5c82985f","name":"Generic-CRUD demo application","description":"<html><head></head><body><p>Collection of <a href=\"https://github.com/Cepr0/generic-crud\">Generic-CRUD</a> demo application API requests</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"788154","collectionId":"903a586a-dd39-4212-9dc7-1a4b5c82985f","publishedId":"S1ENye6m","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2019-04-12T14:42:39.000Z"},"item":[{"name":"User","item":[{"name":"Create a new User","event":[{"listen":"test","script":{"id":"c9d53806-11fd-4c5b-883c-7f7a9da412bc","exec":["var json = JSON.parse(responseBody);","var id = json.id;","","if (id !== undefined) {","    pm.globals.set(\"user_id\", id);","}"],"type":"text/javascript"}}],"id":"9faa9f64-1ba1-4c8b-bd5a-881f504fbc8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"user\"\n}"},"url":"http://localhost:8080/users","urlObject":{"protocol":"http","port":"8080","path":["users"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"dcf5cb1b-77f4-40e9-8e43-646e17d7e8d2","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"user\"\n}"},"url":"http://localhost:8080/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Location","value":"/users/1"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 13:39:44 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"name\": \"user\",\n    \"createdAt\": \"2019-04-12T13:39:44.859375700Z\",\n    \"updatedAt\": \"2019-04-12T13:39:44.859375700Z\"\n}"}],"_postman_id":"9faa9f64-1ba1-4c8b-bd5a-881f504fbc8e"},{"name":"Get one User by its id","id":"ff14f7b4-76fb-4b1c-9156-63b60fba665d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"http://localhost:8080/users/{{user_id}}","urlObject":{"protocol":"http","port":"8080","path":["users","{{user_id}}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"2e10c2e7-11e6-416a-a951-7a0ab10d6f54","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"http://localhost:8080/users/{{user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 13:40:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"name\": \"user\",\n    \"createdAt\": \"2019-04-12T13:39:44.859376Z\",\n    \"updatedAt\": \"2019-04-12T13:39:44.859376Z\"\n}"}],"_postman_id":"ff14f7b4-76fb-4b1c-9156-63b60fba665d"},{"name":"Update a User by its id","id":"6fd9d8e7-fdef-4b9f-acd2-979f08a15089","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"user_updated\"\n}"},"url":"http://localhost:8080/users/{{user_id}}","urlObject":{"protocol":"http","port":"8080","path":["users","{{user_id}}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"60f5b94b-2e77-4e80-be7d-972d7af689d9","name":"200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"user_updated\"\n}"},"url":"http://localhost:8080/users/{{user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 13:41:10 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"name\": \"user_updated\",\n    \"createdAt\": \"2019-04-12T13:39:44.859376Z\",\n    \"updatedAt\": \"2019-04-12T13:41:10.033950900Z\"\n}"}],"_postman_id":"6fd9d8e7-fdef-4b9f-acd2-979f08a15089"},{"name":"Delete a User by its id","id":"7bf63951-3ced-45da-98ea-77fabab81553","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"http://localhost:8080/users/{{user_id}}","description":"<p>If the User id is 1 then error 'Forbidden' is returned as example of operation post-processing</p>\n","urlObject":{"protocol":"http","port":"8080","path":["users","{{user_id}}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"2b4e6a0f-1741-402a-bcef-fdd50e60a3fe","name":"204 No Content","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"http://localhost:8080/users/{{user_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 12 Apr 2019 13:42:06 GMT"}],"cookie":[],"responseTime":null,"body":null},{"id":"f5135e94-e095-4574-a557-acdf2e2730cc","name":"403 Forbidden","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"http://localhost:8080/users/{{user_id}}"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 13:41:33 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"timestamp\": \"2019-04-12T13:41:33.561+0000\",\n    \"status\": 403,\n    \"error\": \"Forbidden\",\n    \"message\": \"Deleting a User with ID = 1 is not allowed!\",\n    \"path\": \"/users/1\"\n}"}],"_postman_id":"7bf63951-3ced-45da-98ea-77fabab81553"},{"name":"Get all Users","id":"29900784-752e-413d-b84c-888dba5b0be8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/users?sort=id,desc&size=3&page=0","urlObject":{"protocol":"http","port":"8080","path":["users"],"host":["localhost"],"query":[{"key":"sort","value":"id,desc"},{"key":"size","value":"3"},{"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"682b8c3b-c1af-463e-b27b-e19e319aed45","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:8080/users?sort=id,desc&size=3&page=1","protocol":"http","host":["localhost"],"port":"8080","path":["users"],"query":[{"key":"sort","value":"id,desc"},{"key":"size","value":"3"},{"key":"page","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 13:59:10 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"id\": 5,\n            \"name\": \"user\",\n            \"createdAt\": \"2019-04-12T13:58:12.756099Z\",\n            \"updatedAt\": \"2019-04-12T13:58:12.756099Z\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"user\",\n            \"createdAt\": \"2019-04-12T13:58:12.072773Z\",\n            \"updatedAt\": \"2019-04-12T13:58:12.072773Z\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"user\",\n            \"createdAt\": \"2019-04-12T13:56:44.677335Z\",\n            \"updatedAt\": \"2019-04-12T13:56:44.677335Z\"\n        }\n    ],\n    \"page\": {\n        \"number\": 1,\n        \"size\": 3,\n        \"total\": 3,\n        \"first\": false,\n        \"last\": false\n    },\n    \"elements\": {\n        \"total\": 7,\n        \"on_page\": 3\n    },\n    \"sort\": [\n        {\n            \"property\": \"id\",\n            \"direction\": \"DESC\"\n        }\n    ]\n}"}],"_postman_id":"29900784-752e-413d-b84c-888dba5b0be8"}],"id":"889f3743-e51b-4c68-b383-7c6b3981f669","_postman_id":"889f3743-e51b-4c68-b383-7c6b3981f669","description":""},{"name":"Person","item":[{"name":"Create a new Person","event":[{"listen":"test","script":{"id":"cc49a4d4-c5f8-47ba-9e38-673df81e7e01","exec":["var json = JSON.parse(responseBody);","var id = json.id;","","if (id !== undefined) {","    pm.globals.set(\"person_id\", id);","}"],"type":"text/javascript"}}],"id":"8af8d678-e761-4b75-925a-2de1a0f8ae94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"person\"\n}"},"url":"http://localhost:8080/people","urlObject":{"protocol":"http","port":"8080","path":["people"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"d409861f-6825-44e5-9389-d8070d8ff2f2","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"person\"\n}"},"url":"http://localhost:8080/people"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 13:37:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"57ab3b69-3111-4491-ab5f-8ccc3312125c\",\n    \"name\": \"person\",\n    \"cars\": []\n}"}],"_postman_id":"8af8d678-e761-4b75-925a-2de1a0f8ae94"},{"name":"Update one Person by its id","event":[{"listen":"test","script":{"id":"cc49a4d4-c5f8-47ba-9e38-673df81e7e01","exec":["var json = JSON.parse(responseBody);","var id = json.id;","","if (id !== undefined) {","    pm.globals.set(\"person_id\", id);","}"],"type":"text/javascript"}}],"id":"8e3dfdbd-9bea-4c50-bced-f8c8544534cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"person_updated\"\n}"},"url":"http://localhost:8080/people/{{person_id}}","urlObject":{"protocol":"http","port":"8080","path":["people","{{person_id}}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"b99048c4-7858-4983-b4b9-e2b2ab670bb8","name":"200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"person_updated\"\n}"},"url":"http://localhost:8080/people/{{person_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 14:38:25 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"47d03779-987f-4aa8-b56b-d68c73db1332\",\n    \"name\": \"person_updated\",\n    \"cars\": [\n        {\n            \"id\": \"3734a05e-c85f-4710-88ee-596951fac06f\",\n            \"brand\": \"Nissan\",\n            \"model\": \"Juke\",\n            \"year\": 2017\n        },\n        {\n            \"id\": \"3b8d329e-04ab-43fc-a9af-4930517f96e1\",\n            \"brand\": \"Ford\",\n            \"model\": \"Focus\",\n            \"year\": 2016\n        }\n    ]\n}"}],"_postman_id":"8e3dfdbd-9bea-4c50-bced-f8c8544534cc"},{"name":"Add the first Car to Person","event":[{"listen":"test","script":{"id":"79b23733-cc30-46a5-abdb-75c535e59497","exec":["var json = JSON.parse(responseBody);","var id = json.id;","","if (id !== undefined) {","    pm.globals.set(\"car_id\", id);","}"],"type":"text/javascript"}}],"id":"a1db5ffc-75a9-49d1-891f-d2f54a1e244b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"brand\": \"Nissan\",\n\t\"model\": \"Juke\",\n\t\"year\": 2017,\n\t\"personId\": \"{{person_id}}\"\n}"},"url":"http://localhost:8080/cars","urlObject":{"protocol":"http","port":"8080","path":["cars"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"4b8721fb-a5c5-4914-acb5-baef44d701c3","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"brand\": \"Nissan\",\n\t\"model\": \"Juke\",\n\t\"year\": 2017,\n\t\"personId\": \"{{person_id}}\"\n}"},"url":"http://localhost:8080/cars"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 13:38:03 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"572b6018-5e3a-4946-aab7-70eee58d9c68\",\n    \"brand\": \"Nissan\",\n    \"model\": \"Juke\",\n    \"year\": 2017,\n    \"personId\": \"57ab3b69-3111-4491-ab5f-8ccc3312125c\"\n}"}],"_postman_id":"a1db5ffc-75a9-49d1-891f-d2f54a1e244b"},{"name":"Add the second Car to Person","event":[{"listen":"test","script":{"id":"79b23733-cc30-46a5-abdb-75c535e59497","exec":["var json = JSON.parse(responseBody);","var id = json.id;","","if (id !== undefined) {","    pm.globals.set(\"car_id\", id);","}"],"type":"text/javascript"}}],"id":"afa101de-221b-42c6-b0cb-f897e70e2bb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"brand\": \"Ford\",\n\t\"model\": \"Focus\",\n\t\"year\": 2018,\n\t\"personId\": \"{{person_id}}\"\n}"},"url":"http://localhost:8080/cars","urlObject":{"protocol":"http","port":"8080","path":["cars"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"40521ef9-5ad5-4e7b-aeae-adb4f99b6ed4","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"brand\": \"Ford\",\n\t\"model\": \"Focus\",\n\t\"year\": 2018,\n\t\"personId\": \"{{person_id}}\"\n}"},"url":"http://localhost:8080/cars"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 13:38:06 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d37bcc67-784f-44fe-bea1-4e327e2153e6\",\n    \"brand\": \"Ford\",\n    \"model\": \"Focus\",\n    \"year\": 2018,\n    \"personId\": \"57ab3b69-3111-4491-ab5f-8ccc3312125c\"\n}"}],"_postman_id":"afa101de-221b-42c6-b0cb-f897e70e2bb8"},{"name":"Update one Car by its id","id":"80c0eae4-19c2-4a0d-871e-b6eb04a7a610","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"year\": 2016\n}"},"url":"http://localhost:8080/cars/{{car_id}}","urlObject":{"protocol":"http","port":"8080","path":["cars","{{car_id}}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"bfc3873b-9996-422e-9301-b6cbd727c74d","name":"200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"year\": 2016\n}"},"url":"http://localhost:8080/cars/{{car_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 14:14:45 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"3b8d329e-04ab-43fc-a9af-4930517f96e1\",\n    \"brand\": \"Ford\",\n    \"model\": \"Focus\",\n    \"year\": 2016,\n    \"personId\": \"47d03779-987f-4aa8-b56b-d68c73db1332\"\n}"}],"_postman_id":"80c0eae4-19c2-4a0d-871e-b6eb04a7a610"},{"name":"Get one Person by its id","id":"eb3a0494-ee15-44b5-b076-150842d83eff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/people/{{person_id}}","urlObject":{"protocol":"http","port":"8080","path":["people","{{person_id}}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"11339a43-7e81-4ef2-ad57-a55f14b630f4","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/people/{{person_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 14:18:03 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"47d03779-987f-4aa8-b56b-d68c73db1332\",\n    \"name\": \"person\",\n    \"cars\": [\n        {\n            \"id\": \"3734a05e-c85f-4710-88ee-596951fac06f\",\n            \"brand\": \"Nissan\",\n            \"model\": \"Juke\",\n            \"year\": 2017\n        },\n        {\n            \"id\": \"3b8d329e-04ab-43fc-a9af-4930517f96e1\",\n            \"brand\": \"Ford\",\n            \"model\": \"Focus\",\n            \"year\": 2016\n        }\n    ]\n}"}],"_postman_id":"eb3a0494-ee15-44b5-b076-150842d83eff"},{"name":"Get all people","id":"90e9d2b3-c2ec-4e88-a618-b84326321997","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/people","urlObject":{"protocol":"http","port":"8080","path":["people"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"c213e8b3-5894-42ce-9f72-45c80c2e7fc5","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/people"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 14:19:28 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"people\": [\n        {\n            \"id\": \"57ab3b69-3111-4491-ab5f-8ccc3312125c\",\n            \"name\": \"person\",\n            \"cars\": [\n                {\n                    \"id\": \"572b6018-5e3a-4946-aab7-70eee58d9c68\",\n                    \"brand\": \"Nissan\",\n                    \"model\": \"Juke\",\n                    \"year\": 2017,\n                    \"personId\": \"57ab3b69-3111-4491-ab5f-8ccc3312125c\"\n                },\n                {\n                    \"id\": \"d37bcc67-784f-44fe-bea1-4e327e2153e6\",\n                    \"brand\": \"Ford\",\n                    \"model\": \"Focus\",\n                    \"year\": 2018,\n                    \"personId\": \"57ab3b69-3111-4491-ab5f-8ccc3312125c\"\n                }\n            ]\n        },\n        {\n            \"id\": \"47d03779-987f-4aa8-b56b-d68c73db1332\",\n            \"name\": \"person\",\n            \"cars\": [\n                {\n                    \"id\": \"3734a05e-c85f-4710-88ee-596951fac06f\",\n                    \"brand\": \"Nissan\",\n                    \"model\": \"Juke\",\n                    \"year\": 2017,\n                    \"personId\": \"47d03779-987f-4aa8-b56b-d68c73db1332\"\n                },\n                {\n                    \"id\": \"3b8d329e-04ab-43fc-a9af-4930517f96e1\",\n                    \"brand\": \"Ford\",\n                    \"model\": \"Focus\",\n                    \"year\": 2016,\n                    \"personId\": \"47d03779-987f-4aa8-b56b-d68c73db1332\"\n                }\n            ]\n        }\n    ],\n    \"page\": {\n        \"number\": 0,\n        \"size\": 20,\n        \"total\": 1,\n        \"first\": true,\n        \"last\": true\n    },\n    \"elements\": {\n        \"total\": 2,\n        \"on_page\": 2\n    }\n}"}],"_postman_id":"90e9d2b3-c2ec-4e88-a618-b84326321997"},{"name":"Get one Car by its id","id":"9effdd95-de9b-483c-afa6-75a9665cc347","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/cars/{{car_id}}","urlObject":{"protocol":"http","port":"8080","path":["cars","{{car_id}}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"d249def6-6078-4296-b528-6d0c33de960f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/cars/{{car_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 12 Apr 2019 14:16:03 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"3b8d329e-04ab-43fc-a9af-4930517f96e1\",\n    \"brand\": \"Ford\",\n    \"model\": \"Focus\",\n    \"year\": 2016,\n    \"personId\": \"47d03779-987f-4aa8-b56b-d68c73db1332\"\n}"}],"_postman_id":"9effdd95-de9b-483c-afa6-75a9665cc347"},{"name":"Get all Cars","id":"89aec6f7-04a9-4386-a6e5-5a06643f9b34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/cars","urlObject":{"protocol":"http","port":"8080","path":["cars"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"89aec6f7-04a9-4386-a6e5-5a06643f9b34"},{"name":"Delete one Car by its id","id":"6095c3c7-dc84-4840-b303-1e252251024c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:8080/cars/{{car_id}}","urlObject":{"protocol":"http","port":"8080","path":["cars","{{car_id}}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"75fdd088-5cb1-4c97-8d4b-8e8c5f4c3027","name":"204 No Content","originalRequest":{"method":"DELETE","header":[],"url":"http://localhost:8080/cars/{{car_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 12 Apr 2019 14:39:22 GMT"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6095c3c7-dc84-4840-b303-1e252251024c"},{"name":"Delete one Person by its id","id":"fa8a3d85-4cc1-4f0b-adbb-b307a0ff5272","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:8080/people/{{person_id}}","urlObject":{"protocol":"http","port":"8080","path":["people","{{person_id}}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"63b1fa7a-e73a-4333-9e3d-b1336d7312e0","name":"204 No Content","originalRequest":{"method":"DELETE","header":[],"url":"http://localhost:8080/people/{{person_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 12 Apr 2019 14:41:26 GMT"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fa8a3d85-4cc1-4f0b-adbb-b307a0ff5272"}],"id":"94e941b5-1df8-4e1a-8614-73ab12e3b728","_postman_id":"94e941b5-1df8-4e1a-8614-73ab12e3b728","description":""}]}