{ "info": { "_postman_id": "f2993ac6-e3ef-4fc0-9bab-8ba14cd2b51d", "name": "Project64", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "_exporter_id": "4185850" }, "item": [ { "name": "Get All Customers", "request": { "method": "GET", "header": [], "url": { "raw": "http://localhost:8080/api/customers", "protocol": "http", "host": [ "localhost" ], "port": "8080", "path": [ "api", "customers" ] } }, "response": [] }, { "name": "Get Customer By Id", "request": { "method": "GET", "header": [], "url": { "raw": "http://localhost:8080/api/customer/1", "protocol": "http", "host": [ "localhost" ], "port": "8080", "path": [ "api", "customer", "1" ] } }, "response": [] }, { "name": "Find Customer By Name & Age", "request": { "method": "GET", "header": [], "url": { "raw": "http://localhost:8080/api/customer?name=raj&age=25", "protocol": "http", "host": [ "localhost" ], "port": "8080", "path": [ "api", "customer" ], "query": [ { "key": "name", "value": "raj" }, { "key": "age", "value": "25" } ] } }, "response": [] }, { "name": "Save Customer", "request": { "method": "POST", "header": [], "body": { "mode": "raw", "raw": "{\n \"name\": \"jack\",\n \"age\": 33\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "http://localhost:8080/api/customer", "protocol": "http", "host": [ "localhost" ], "port": "8080", "path": [ "api", "customer" ] } }, "response": [] }, { "name": "Generate CSV", "request": { "method": "GET", "header": [], "url": { "raw": "http://localhost:8080/api/csv", "protocol": "http", "host": [ "localhost" ], "port": "8080", "path": [ "api", "csv" ] } }, "response": [] }, { "name": "Get All Downloads", "request": { "method": "GET", "header": [], "url": { "raw": "http://localhost:8080/api/downloads", "protocol": "http", "host": [ "localhost" ], "port": "8080", "path": [ "api", "downloads" ] } }, "response": [] }, { "name": "Download File", "request": { "method": "GET", "header": [], "url": { "raw": "http://localhost:8080/api/download/1", "protocol": "http", "host": [ "localhost" ], "port": "8080", "path": [ "api", "download", "1" ] } }, "response": [] } ] }