{ "info": { "_postman_id": "6bbba1bf-c160-4e37-9992-1ccc3c5cb811", "name": "Quarkus - Book API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { "name": "/book", "request": { "method": "DELETE", "header": [ { "key": "x-api-key", "value": "{{x-api-key}}", "type": "text" } ], "url": { "raw": "http://localhost:8080/book/{{libraryCode}}", "protocol": "http", "host": [ "localhost" ], "port": "8080", "path": [ "book", "{{libraryCode}}" ] } }, "response": [] }, { "name": "/book", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "x-api-key", "value": "{{x-api-key}}", "type": "text" } ], "body": { "mode": "raw", "raw": "{\n \"title\":{{title}},\n \"libraryCode\":{{libraryCode}},\n \"catalogingDate\":\"2020-11-01\"\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "http://localhost:8080/book", "protocol": "http", "host": [ "localhost" ], "port": "8080", "path": [ "book" ] } }, "response": [] }, { "name": "/book Copy", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "x-api-key", "value": "{{x-api-key}}", "type": "text" } ], "body": { "mode": "raw", "raw": "{\n \"title\":\"Malorie\",\n \"catalogingDate\":\"2020-11-01\"\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "http://localhost:8080/book/test", "protocol": "http", "host": [ "localhost" ], "port": "8080", "path": [ "book", "test" ] } }, "response": [] }, { "name": "/book", "request": { "method": "GET", "header": [ { "key": "x-api-key", "value": "{{x-api-key}}", "type": "text" } ], "url": { "raw": "http://localhost:8080/book?libraryCode={{libraryCode}}", "protocol": "http", "host": [ "localhost" ], "port": "8080", "path": [ "book" ], "query": [ { "key": "libraryCode", "value": "{{libraryCode}}" } ] } }, "response": [] } ], "protocolProfileBehavior": {} }