{"info":{"_postman_id":"1a751899-1f33-499f-8880-161b7002ded8","name":"JavaEE-POS","description":"<html><head></head><body><p>The POS Order Management API provides endpoints to handle order processing, customer management, and item management in a Point of Sale (POS) system. It allows users to create, view, and manage orders, customers, and items, including detailed information about each order, customer, and item.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"35384500","collectionId":"1a751899-1f33-499f-8880-161b7002ded8","publishedId":"2sA3s3GWG7","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-08-09T17:31:11.000Z"},"item":[{"name":"customer","item":[{"name":"save customer","id":"921d04c7-d585-45e2-9fb1-6f6541f29481","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\":\"C00-001\",\r\n    \"name\":\"Mihiranga\",\r\n    \"address\":\"Matara\",\r\n    \"salary\":\"50000.00\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/posSystem/customer","urlObject":{"protocol":"http","port":"8080","path":["posSystem","customer"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"921d04c7-d585-45e2-9fb1-6f6541f29481"},{"name":"update customer","id":"361af96f-5784-4076-bedd-f31893b4a972","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"Charaka Mihiranga\",\r\n    \"address\":\"Matara\",\r\n    \"salary\":\"50000.00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/posSystem/customer?id=C00-001","description":"<h3 id=\"update-customer-details\">Update Customer Details</h3>\n<p>This endpoint allows the client to update the details of a specific customer.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: PUT</p>\n</li>\n<li><p>URL: <code>http://localhost:8080/posSystem/customer?id=C00-001</code></p>\n</li>\n<li><p>Headers:</p>\n<ul>\n<li>Content-Type: application/json</li>\n</ul>\n</li>\n<li><p>Parameters:</p>\n<ul>\n<li>id (query parameter): C00-001 (The unique identifier of the customer)</li>\n</ul>\n</li>\n<li><p>Body:</p>\n<ul>\n<li><p>name (string, optional): The updated name of the customer</p>\n</li>\n<li><p>address (string, optional): The updated address of the customer</p>\n</li>\n<li><p>salary (string, optional): The updated salary of the customer</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p>Status: 204</p>\n</li>\n<li><p>Content-Type: text/xml</p>\n</li>\n<li><p>Body: null</p>\n</li>\n</ul>\n","urlObject":{"protocol":"http","port":"8080","path":["posSystem","customer"],"host":["localhost"],"query":[{"key":"id","value":"C00-001"}],"variable":[]}},"response":[],"_postman_id":"361af96f-5784-4076-bedd-f31893b4a972"},{"name":"delete customer","id":"bb8891ad-382b-43c4-99e4-6df8f6f04b6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:8080/posSystem/customer?id=C00-001","description":"<h3 id=\"delete-customer\">Delete Customer</h3>\n<p>This endpoint is used to delete a customer from the Point of Sale (POS) system.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: DELETE</p>\n</li>\n<li><p>URL: <code>http://localhost:8080/posSystem/customer?id=C00-001</code></p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response for this request is a 204 status code with no content.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>This request does not require a request body.</p>\n<h4 id=\"response-body-json-schema\">Response Body (JSON Schema)</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["posSystem","customer"],"host":["localhost"],"query":[{"key":"id","value":"C00-001"}],"variable":[]}},"response":[],"_postman_id":"bb8891ad-382b-43c4-99e4-6df8f6f04b6b"},{"name":"get customer","event":[{"listen":"test","script":{"id":"b6fa7073-c2f8-46e0-8730-261f44445707","exec":[""],"type":"text/javascript","packages":{}}}],"id":"d3190464-264c-4cad-8c0c-99092ca1de42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/posSystem/customer?id=C00-001","description":"<p>The API endpoint retrieves customer details based on the provided ID.</p>\n<h3 id=\"response\">Response</h3>\n<p>The response is in JSON format with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"address\": {\n      \"type\": \"string\"\n    },\n    \"id\": {\n      \"type\": \"string\"\n    },\n    \"name\": {\n      \"type\": \"string\"\n    },\n    \"salary\": {\n      \"type\": \"number\"\n    }\n  }\n}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["posSystem","customer"],"host":["localhost"],"query":[{"key":"id","value":"C00-001"}],"variable":[]}},"response":[],"_postman_id":"d3190464-264c-4cad-8c0c-99092ca1de42"},{"name":"get all customers","id":"c165c417-611b-43cc-baeb-50947c45484d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/posSystem/customer","description":"<h3 id=\"get-possystemcustomer\">GET /posSystem/customer</h3>\n<p>This endpoint retrieves a list of customers from the point of sale system.</p>\n<h4 id=\"request\">Request</h4>\n<p>No request body is required for this endpoint.</p>\n<h4 id=\"response\">Response</h4>\n<p>The response will be a JSON array containing customer objects with the following properties:</p>\n<ul>\n<li><p><code>address</code> (string): The address of the customer.</p>\n</li>\n<li><p><code>id</code> (string): The unique identifier of the customer.</p>\n</li>\n<li><p><code>name</code> (string): The name of the customer.</p>\n</li>\n<li><p><code>salary</code> (number): The salary of the customer.</p>\n</li>\n</ul>\n<p>Example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"address\": \"\",\n        \"id\": \"\",\n        \"name\": \"\",\n        \"salary\": 0\n    }\n]\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["posSystem","customer"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"c165c417-611b-43cc-baeb-50947c45484d"}],"id":"bffcea1b-ec24-4f64-bbd6-d52a238f2972","_postman_id":"bffcea1b-ec24-4f64-bbd6-d52a238f2972","description":""},{"name":"item","item":[{"name":"save item","id":"28fbda72-1abb-4cd3-9c0b-d480f8c68452","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"code\":\"I00-003\",\r\n    \"name\":\"cable\",\r\n    \"qty\":\"250\",\r\n    \"unitPrice\":\"200.00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/posSystem/item","description":"<h3 id=\"post-possystemitem\">POST /posSystem/item</h3>\n<p>This endpoint is used to create a new item in the Point of Sale (POS) system.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>code</code> (string, required): The unique code of the item.</p>\n</li>\n<li><p><code>name</code> (string, required): The name of the item.</p>\n</li>\n<li><p><code>qty</code> (string, required): The quantity of the item.</p>\n</li>\n<li><p><code>unitPrice</code> (string, required): The unit price of the item.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response of this request is a JSON object with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"object\",\n    \"properties\": {\n        \"status\": {\n            \"type\": \"number\",\n            \"description\": \"The status code of the response.\"\n        },\n        \"message\": {\n            \"type\": \"string\",\n            \"description\": \"A message indicating the result of the request.\"\n        }\n    }\n}\n\n</code></pre>\n<h4 id=\"example\">Example</h4>\n<p>Request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": \"ABC123\",\n    \"name\": \"Sample Item\",\n    \"qty\": \"10\",\n    \"unitPrice\": \"25.00\"\n}\n\n</code></pre>\n<p>Response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": 201,\n    \"message\": \"Item saved successfully!\"\n}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["posSystem","item"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"28fbda72-1abb-4cd3-9c0b-d480f8c68452"},{"name":"get item","id":"ce4ce974-6a99-4acb-994e-0e1e08dee62d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/posSystem/item?code=I00-001","description":"<p>The <code>GET</code> request retrieves information about a specific item from the Point of Sale system using the item code as a query parameter. The response is in JSON format and has the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"code\": {\n      \"type\": \"string\"\n    },\n    \"name\": {\n      \"type\": \"string\"\n    },\n    \"qty\": {\n      \"type\": \"integer\"\n    },\n    \"unitPrice\": {\n      \"type\": \"number\"\n    }\n  }\n}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["posSystem","item"],"host":["localhost"],"query":[{"key":"code","value":"I00-001"}],"variable":[]}},"response":[],"_postman_id":"ce4ce974-6a99-4acb-994e-0e1e08dee62d"},{"name":"get all items","id":"5aae596b-fe79-44d8-b3e5-b9d6a7cc9f49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/posSystem/item","description":"<p>This endpoint makes an HTTP GET request to retrieve the list of items from the POS system. The request does not include any request body parameters.</p>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful execution, the server responds with a status code of 200 and a JSON array containing the details of the items. Each item object includes the following properties:</p>\n<ul>\n<li><p><code>code</code>: The code of the item.</p>\n</li>\n<li><p><code>name</code>: The name of the item.</p>\n</li>\n<li><p><code>qty</code>: The quantity of the item available.</p>\n</li>\n<li><p><code>unitPrice</code>: The unit price of the item.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"http","port":"8080","path":["posSystem","item"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"5aae596b-fe79-44d8-b3e5-b9d6a7cc9f49"},{"name":"update item","id":"47fc3279-90e7-4aef-851a-f74f49576c72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"Lap\",\r\n    \"qty\":\"200\",\r\n    \"unitPrice\":\"450.00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/posSystem/item?code=I00-001","description":"<h3 id=\"update-item-details\">Update Item Details</h3>\n<p>This endpoint is used to update the details of a specific item in the POS system.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>name</code> (string, required): The updated name of the item.</p>\n</li>\n<li><p><code>qty</code> (string, required): The updated quantity of the item.</p>\n</li>\n<li><p><code>unitPrice</code> (string, required): The updated unit price of the item.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p>Status: 204</p>\n</li>\n<li><p>Content-Type: text/xml</p>\n</li>\n<li><p>Response Body: null</p>\n</li>\n</ul>\n","urlObject":{"protocol":"http","port":"8080","path":["posSystem","item"],"host":["localhost"],"query":[{"key":"code","value":"I00-001"}],"variable":[]}},"response":[],"_postman_id":"47fc3279-90e7-4aef-851a-f74f49576c72"},{"name":"delete item","id":"fe27e8e9-2d84-48b9-9249-fec17a78e8c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:8080/posSystem/item?code=I00-001","description":"<p>This endpoint is used to delete a specific item from the POS system by providing the item code as a query parameter.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p>Method: DELETE</p>\n</li>\n<li><p>Endpoint: <code>http://localhost:8080/posSystem/item</code></p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li><code>code</code>: The code of the item to be deleted (e.g. I00-001)</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<ul>\n<li><p>Status: 204</p>\n</li>\n<li><p>Content-Type: text/xml</p>\n</li>\n<li><p>Body: null</p>\n</li>\n</ul>\n","urlObject":{"protocol":"http","port":"8080","path":["posSystem","item"],"host":["localhost"],"query":[{"key":"code","value":"I00-001"}],"variable":[]}},"response":[],"_postman_id":"fe27e8e9-2d84-48b9-9249-fec17a78e8c4"}],"id":"7fdf8c7d-974d-4b3f-aa47-5cccd3a751cd","_postman_id":"7fdf8c7d-974d-4b3f-aa47-5cccd3a751cd","description":""},{"name":"order","item":[{"name":"get order","id":"3b0f342a-dcd4-49d7-9005-60f10d7ed822","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/posSystem/order?orderId=ORD00-001","description":"<h1 id=\"order-details\">Order Details</h1>\n<p>This endpoint retrieves the details of a specific order identified by the orderId parameter.</p>\n<h2 id=\"request\">Request</h2>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<ul>\n<li><code>orderId</code> (string, required): The unique identifier of the order.</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<ul>\n<li><p><code>address</code> (string): The address associated with the order.</p>\n</li>\n<li><p><code>balance</code> (number): The remaining balance for the order.</p>\n</li>\n<li><p><code>customerId</code> (string): The unique identifier of the customer associated with the order.</p>\n</li>\n<li><p><code>discount</code> (number): The discount applied to the order.</p>\n</li>\n<li><p><code>orderDate</code> (string): The date of the order.</p>\n</li>\n<li><p><code>orderDetails</code> (array): An array of objects containing the details of the items in the order, including item code, name, price, order ID, quantity, and total cost.</p>\n<ul>\n<li><p><code>itemCode</code> (string): The code of the item.</p>\n</li>\n<li><p><code>itemName</code> (string): The name of the item.</p>\n</li>\n<li><p><code>itemPrice</code> (number): The price of the item.</p>\n</li>\n<li><p><code>orderId</code> (string): The unique identifier of the order.</p>\n</li>\n<li><p><code>quantity</code> (number): The quantity of the item in the order.</p>\n</li>\n<li><p><code>total</code> (number): The total cost of the item in the order.</p>\n</li>\n</ul>\n</li>\n<li><p><code>orderId</code> (string): The unique identifier of the order.</p>\n</li>\n<li><p><code>paidAmount</code> (number): The amount already paid for the order.</p>\n</li>\n<li><p><code>subTotal</code> (number): The subtotal of the order.</p>\n</li>\n<li><p><code>total</code> (number): The total cost of the order.</p>\n</li>\n</ul>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"address\": \"\",\n    \"balance\": 0,\n    \"customerId\": \"\",\n    \"discount\": 0,\n    \"orderDate\": \"\",\n    \"orderDetails\": [\n        {\n            \"itemCode\": \"\",\n            \"itemName\": \"\",\n            \"itemPrice\": 0,\n            \"orderId\": \"\",\n            \"quantity\": 0,\n            \"total\": 0\n        }\n    ],\n    \"orderId\": \"\",\n    \"paidAmount\": 0,\n    \"subTotal\": 0,\n    \"total\": 0\n}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["posSystem","order"],"host":["localhost"],"query":[{"key":"orderId","value":"ORD00-001"}],"variable":[]}},"response":[],"_postman_id":"3b0f342a-dcd4-49d7-9005-60f10d7ed822"},{"name":"get all orders","id":"73a552b6-9c9c-4f81-a714-1b218f171f4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/posSystem/order","description":"<h1 id=\"retrieve-order-details\">Retrieve Order Details</h1>\n<p>This endpoint allows you to retrieve the details of orders from the point of sale system.</p>\n<h2 id=\"request\">Request</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>GET http://localhost:8080/posSystem/order</code></p>\n<h2 id=\"response\">Response</h2>\n<p>Upon a successful request, the server will respond with a status code of 200 and a JSON array containing the details of the orders. The response body includes the following fields for each order:</p>\n<ul>\n<li><p><code>address</code> (string): The address associated with the order.</p>\n</li>\n<li><p><code>balance</code> (number): The balance amount for the order.</p>\n</li>\n<li><p><code>customerId</code> (string): The ID of the customer who placed the order.</p>\n</li>\n<li><p><code>discount</code> (number): The discount applied to the order.</p>\n</li>\n<li><p><code>orderDate</code> (string): The date of the order.</p>\n</li>\n<li><p><code>orderId</code> (string): The unique identifier of the order.</p>\n</li>\n<li><p><code>paidAmount</code> (number): The amount paid for the order.</p>\n</li>\n<li><p><code>subTotal</code> (number): The subtotal amount for the order.</p>\n</li>\n<li><p><code>total</code> (number): The total amount for the order.</p>\n</li>\n</ul>\n<p>Example response body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"address\": \"\",\n        \"balance\": 0,\n        \"customerId\": \"\",\n        \"discount\": 0,\n        \"orderDate\": \"\",\n        \"orderId\": \"\",\n        \"paidAmount\": 0,\n        \"subTotal\": 0,\n        \"total\": 0\n    }\n]\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["posSystem","order"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"73a552b6-9c9c-4f81-a714-1b218f171f4e"},{"name":"save order","id":"0e82582a-84c2-46d1-9574-43bf23bc8344","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n        \"orderId\": \"ORD00-001\",\r\n        \"orderDate\": \"09/08/2024\",\r\n        \"customerId\": \"C00-001\",\r\n        \"total\": \"35000.00\",\r\n        \"subTotal\": \"30000.00\",\r\n        \"paidAmount\": \"35000.00\",\r\n        \"discount\": \"5000.00\",\r\n        \"balance\": \"0.00\",\r\n        \"address\": \"Matara\",\r\n    \"orderDetails\": [\r\n        {\r\n            \"orderId\": \"ORD00-001\",\r\n            \"itemCode\": \"I00-002\",\r\n            \"itemName\": \"charger\",\r\n            \"itemPrice\": \"1500.00\",\r\n            \"quantity\": 10,\r\n            \"total\": \"15000.00\"\r\n        },\r\n        {\r\n            \"orderId\": \"ORD00-001\",\r\n            \"itemCode\": \"I00-003\",\r\n            \"itemName\": \"cable\",\r\n            \"itemPrice\": \"200.00\",\r\n            \"quantity\": 5,\r\n            \"total\": \"1000.00\"\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/posSystem/order","description":"<h3 id=\"post-possystemorder\">POST /posSystem/order</h3>\n<p>This endpoint is used to create a new order in the POS system.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>orderId</code> (string): The unique identifier for the order.</p>\n</li>\n<li><p><code>orderDate</code> (string): The date of the order.</p>\n</li>\n<li><p><code>customerId</code> (string): The unique identifier of the customer placing the order.</p>\n</li>\n<li><p><code>total</code> (string): The total amount of the order.</p>\n</li>\n<li><p><code>subTotal</code> (string): The subtotal amount of the order.</p>\n</li>\n<li><p><code>paidAmount</code> (string): The amount paid by the customer.</p>\n</li>\n<li><p><code>discount</code> (string): The discount applied to the order.</p>\n</li>\n<li><p><code>balance</code> (string): The remaining balance to be paid.</p>\n</li>\n<li><p><code>address</code> (string): The address for delivering the order.</p>\n</li>\n<li><p><code>orderDetails</code> (array): An array of order details including:</p>\n<ul>\n<li><p><code>orderId</code> (string): The unique identifier for the order detail.</p>\n</li>\n<li><p><code>itemCode</code> (string): The code of the item in the order.</p>\n</li>\n<li><p><code>itemName</code> (string): The name of the item in the order.</p>\n</li>\n<li><p><code>itemPrice</code> (string): The price of the item.</p>\n</li>\n<li><p><code>quantity</code> (number): The quantity of the item in the order.</p>\n</li>\n<li><p><code>total</code> (string): The total amount for the item in the order.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response is a JSON object with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"status\": {\n      \"type\": \"number\",\n      \"description\": \"The status code of the response.\"\n    },\n    \"message\": {\n      \"type\": \"string\",\n      \"description\": \"A message indicating the result of the request.\"\n    }\n  }\n}\n\n</code></pre>\n<h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": 201,\n  \"message\": \"Success\"\n}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["posSystem","order"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e82582a-84c2-46d1-9574-43bf23bc8344"}],"id":"a01694ff-37d2-40a7-82c6-de6b22b754c4","_postman_id":"a01694ff-37d2-40a7-82c6-de6b22b754c4","description":""}]}