{"info":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","description":"<html><head></head><body><p>The Food Connex API, currently in Beta, enables access to key information from most base tables within the Food Connex platform. Users should be aware that additional costs may apply, and proper setup is required before use. We strongly recommend contacting Food Connex Support to confirm setup requirements and review any associated fees before beginning. As a Beta product, this API is still in development and may experience changes or occasional disruptions. Please plan integrations accordingly and check back for updates as the API evolves.</p>\n<h2 id=\"url-variables\">URL Variables</h2>\n<p>Example URL when logged into a client normally through the UI: <a href=\"https://www.foodconnex.cloud/vn/45001/\">https://www.foodconnex.cloud/vn/45001/</a></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Variable</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>{{url}}</td>\n<td>URL to Production Environment</td>\n<td><a href=\"http://www.foodconnex.cloud\">www.foodconnex.cloud</a></td>\n</tr>\n<tr>\n<td>{{sandbox}}</td>\n<td>leave blank</td>\n<td></td>\n</tr>\n<tr>\n<td>{{clientId}}</td>\n<td>The Client's ID which can be accessed from the URL when logged in normally.  <br>In this example the clientId is 45001</td>\n<td>45001</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example API URL to Authenticate endpoint: <a href=\"https://www.foodconnex.cloud/vn/45001/api/v1/authenticate\">https://www.foodconnex.cloud/vn/45001/api/v1/authenticate</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"6709816","collectionId":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","publishedId":"2s93XzyiXM","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"0083c3"},"publishDate":"2025-05-28T14:47:06.000Z"},"item":[{"name":"Authentication","item":[{"name":"Authenticate","event":[{"listen":"test","script":{"id":"e0186725-81fe-474f-91dc-b96c00e0c05e","exec":["var jsonData = JSON.parse(responseBody);\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","\r","    pm.collectionVariables.set(\"apiToken\", jsonData.token);\r","});\r",""],"type":"text/javascript","packages":{}}}],"id":"d77a8b03-7a00-410b-aea7-f6243f6e5bf3","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true,"disableCookies":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/authenticate?u={{user}}&p={{password}}","description":"<h3 id=\"authenticate-user\">Authenticate User</h3>\n<p>This endpoint is used to authenticate a user and obtain a token for accessing protected resources.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>u</code> (string): The username of the user.</p>\n</li>\n<li><p><code>p</code> (string): The password of the user.</p>\n</li>\n</ul>\n<h4 id=\"response-body\">Response Body</h4>\n<p>The response has the following schema:</p>\n<ul>\n<li><p><code>clientId</code> (number): The client ID associated with the authenticated user.</p>\n</li>\n<li><p><code>token</code> (string): The authentication token for accessing protected resources.</p>\n</li>\n<li><p><code>name</code> (string): The name of the authenticated user.</p>\n</li>\n<li><p><code>error</code> (array): An array of error messages, if any.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","authenticate"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required. Username</p>\n","type":"text/plain"},"key":"u","value":"{{user}}"},{"description":{"content":"<p>Required. Password for the user</p>\n","type":"text/plain"},"key":"p","value":"{{password}}"}],"variable":[]}},"response":[{"id":"8ba28938-1dcf-4359-86d2-69b43e0f7575","name":"Authenticate","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/authenticate?u={{user}}&p={{password}}","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","authenticate"],"query":[{"key":"u","value":"{{user}}","description":"(Required) Username"},{"key":"p","value":"{{password}}","description":"(Required) Password for the user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Mon, 17 Oct 2022 20:51:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"JSESSIONID=CAEFBB17E3080C86DF6C02AC7372B42E; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientId\": 30001,\n    \"token\": \"CAEFBB17E3080C86DF6C02AC7372B42E\",\n    \"name\": \"\",\n    \"error\": []\n}"}],"_postman_id":"d77a8b03-7a00-410b-aea7-f6243f6e5bf3"}],"id":"e986790f-1ea8-4aa0-b93d-6e8af541d404","description":"<p>The <code>/authenticate</code> endpoint verifies user credentials and generates an access token. To authenticate, provide a valid username and password. Upon successful authentication, the endpoint will return a token, which is used as a \"bearer token\" in subsequent API requests.</p>\n<p>A <strong>bearer token</strong> is an access token that authenticates the client by including it in the authorization header of each API request (e.g., <code>Authorization: Bearer</code> ). This token is only valid for <strong>one hour</strong> from the time of issuance. When the token expires, the API will return a <code>401 Unauthorized</code> response, indicating that re-authentication is required to obtain a new token.</p>\n<p>Additionally, the API enforces rate limits to prevent excessive usage. If too many requests are made within a short time period, a <code>429 Too Many Requests</code> response will be returned.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"9a02a7d7-6989-4fc1-9c26-78984458a34e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"66be12a8-5d06-4ba7-859e-fbfe62cddc63","type":"text/javascript","exec":[""]}}],"_postman_id":"e986790f-1ea8-4aa0-b93d-6e8af541d404"},{"name":"Categories","item":[{"name":"List all Categories","event":[{"listen":"test","script":{"id":"d033b22e-1abd-44f0-9c2f-6d8f9c5f7c08","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"3b8b3a43-4a22-4509-8e3b-1c49eae9b77e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/categories/","description":"<p>Get a list of all Item Categories</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","categories",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"abd617d2-9929-424f-9cd0-36e7cbcf768d","name":"List all Categories","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/categories/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:16:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=9BAF30D8BEDC71B13882B652C7F3DD0C; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Categories\": [\n        {\n            \"Id\": 14,\n            \"Code\": \"123\",\n            \"Description\": \"Int 64 testing\",\n            \"Parent\": {\n                \"Id\": 0,\n                \"Code\": \"\",\n                \"Description\": \"\"\n            },\n            \"Tree\": \"123 - Int 64 testing\",\n            \"CutoffTime\": \"\"\n        },\n        {\n            \"Id\": 59,\n            \"Code\": \"1909\",\n            \"Description\": \"testing 1909, for commas\",\n            \"Parent\": {\n                \"Id\": 0,\n                \"Code\": \"\",\n                \"Description\": \"\"\n            },\n            \"Tree\": \"1909 - testing 1909, for commas\",\n            \"CutoffTime\": \"\"\n        },\n        {\n            \"Id\": 7,\n            \"Code\": \"23bacon\",\n            \"Description\": \"bacon fat\",\n            \"Parent\": {\n                \"Id\": 0,\n                \"Code\": \"\",\n                \"Description\": \"\"\n            },\n            \"Tree\": \"23bacon - bacon fat\",\n            \"CutoffTime\": \"\"\n        }\n    ],\n    \"NumResults\": 3\n}"}],"_postman_id":"3b8b3a43-4a22-4509-8e3b-1c49eae9b77e"},{"name":"Retrieve a Category","event":[{"listen":"test","script":{"id":"c7aeeb85-9d00-4017-9733-3aeaa4e6ff8c","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"a96cde78-8a7f-4aee-8cd9-b9965556e222","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"35248cd3-7af8-4b13-a4d6-aa3119c1d11b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/categories/:categoryId","description":"<p>Retrieve a specific category based on the category ID provided</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","categories",":categoryId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Category ID</p>\n","type":"text/plain"},"type":"any","value":"{{categoryId}}","key":"categoryId"}]}},"response":[{"id":"f22d81bb-6928-437f-8fb3-d37e2efc74dc","name":"Retrieve a Category","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/categories/:categoryId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","categories",":categoryId"],"variable":[{"key":"categoryId","value":"14","description":"Required. Enter a Category ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:24:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=6EB2EF04E7F7B3AA6D2FB69667A8A58C; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Categories\": [\n        {\n            \"Id\": 14,\n            \"Code\": \"123\",\n            \"Description\": \"Int 64 testing\",\n            \"Parent\": {\n                \"Id\": 0,\n                \"Code\": \"\",\n                \"Description\": \"\"\n            },\n            \"Tree\": \"123 - Int 64 testing\",\n            \"CutoffTime\": \"\"\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"35248cd3-7af8-4b13-a4d6-aa3119c1d11b"}],"id":"d2e3d7cc-1c70-43dc-bc2c-58ef0a708b76","_postman_id":"d2e3d7cc-1c70-43dc-bc2c-58ef0a708b76","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Customers","item":[{"name":"List all customers","event":[{"listen":"test","script":{"id":"bdb1946b-4719-4c73-90e9-d23f564d625d","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"27722eb7-f692-41cc-8c5f-0779cb953afd","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/","description":"<p>List all customers with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",""],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  When not provided or 0 all customers will be returned.\nCan be used with the gtCustomerCode and ltCustomerCode to page through a long list of customers.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtCustomerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is less than the value provided</p>\n","type":"text/plain"},"key":"ltCustomerCode","value":""}],"variable":[]}},"response":[{"id":"aa6865bc-6d24-4ca1-a629-92f26ee30492","name":"List all customers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",""],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 16:05:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=F35875290BBE09A56734FEFE1933D3A1; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 60380002,\n            \"Name\": \"Test Auto Number\",\n            \"Code\": \"10000\",\n            \"Type\": {},\n            \"Group\": {},\n            \"GuideOn\": true,\n            \"GuideDaysToRetain\": 90,\n            \"GuideSortBy\": \"I\",\n            \"GuideManaged\": true,\n            \"CLPDays\": 60,\n            \"Chain\": {},\n            \"IsChainMaster\": false,\n            \"Salesperson\": {\n                \"Id\": 16,\n                \"Code\": \"DA\",\n                \"Name\": \"DAVID M. ANDREWS\"\n            },\n            \"Warehouse\": {},\n            \"Active\": true,\n            \"Foodbuy\": false,\n            \"BillingAddress\": {\n                \"Id\": 327360002,\n                \"Addr1\": \"1123 State Street\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"Doylestown\",\n                \"StateCode\": \"PA\",\n                \"ZipCode\": \"18966\",\n                \"Country\": \"\",\n                \"Phone\": \"(215) 794-7008\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"Delivery\": {},\n            \"CallDays\": {\n                \"Monday\": \"\",\n                \"Tuesday\": \"\",\n                \"Wednesday\": \"\",\n                \"Thursday\": \"\",\n                \"Friday\": \"\",\n                \"Saturday\": \"\",\n                \"Sunday\": \"\"\n            },\n            \"PriceList\": {},\n            \"PrintPromotion\": false,\n            \"SpoilAllowance\": 0,\n            \"UpCharge\": {\n                \"Amount\": 0,\n                \"Account\": {}\n            },\n            \"HandlingPercent\": 0,\n            \"AssessFuelSurcharge\": true,\n            \"AutoFreight\": {\n                \"Amount\": 0,\n                \"UOM\": {\n                    \"Id\": 3,\n                    \"Name\": \"CS\",\n                    \"Description\": \"Case\"\n                }\n            },\n            \"DeliveryMinimum\": {\n                \"Amount\": 100,\n                \"OrderType\": \"Sales\"\n            },\n            \"CreditLimit\": 5550,\n            \"ARBalance\": 0,\n            \"OrderBalance\": 0,\n            \"AvailableCredit\": 5550,\n            \"Terms\": {\n                \"Id\": 19,\n                \"Code\": \"19\",\n                \"Description\": \"Net 15\"\n            },\n            \"TaxCode\": {},\n            \"NonFoodTaxCode\": {},\n            \"TaxId\": \"\",\n            \"HoldReason\": {},\n            \"StatementInvoice\": false,\n            \"BarcodeOnInvoice\": false,\n            \"RequirePoNo\": false,\n            \"StandingPoNo\": \"\",\n            \"AccountingContact\": {\n                \"Id\": 254740002,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"angela@foodconnex.com;casey@foodconnex.com;sean@foodconnex.com\"\n            },\n            \"OfficeContact\": {\n                \"Id\": 254730002,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"SalesContact\": {\n                \"Id\": 254720002,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"angela@foodconnex.com;casey@foodconnex.com;sean@foodconnex.com\"\n            },\n            \"InvoiceContact\": {\n                \"Id\": 0,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"Fax Options\": {\n                \"OrderAcknowledgement\": false,\n                \"PriceList\": false,\n                \"Invoice\": false\n            },\n            \"Email Options\": {\n                \"OrderAcknowledgement\": false,\n                \"PriceList\": false,\n                \"Invoice\": false\n            },\n            \"InternalComment\": \"\",\n            \"PrintedComments\": {\n                \"Line1\": \"\",\n                \"Line2\": \"\",\n                \"Line3\": \"\",\n                \"Line4\": \"\",\n                \"Line5\": \"\",\n                \"Line6\": \"\",\n                \"Line7\": \"\",\n                \"Line8\": \"\",\n                \"Line9\": \"\",\n                \"Line10\": \"\"\n            }\n        },\n        {\n            \"Id\": 8360002,\n            \"Name\": \"Ripple Two\",\n            \"Code\": \"1000011\",\n            \"Type\": {},\n            \"Group\": {},\n            \"GuideOn\": true,\n            \"GuideDaysToRetain\": 100,\n            \"GuideSortBy\": \"I\",\n            \"GuideManaged\": false,\n            \"CLPDays\": 60,\n            \"Chain\": {\n                \"Id\": 1000001,\n                \"Code\": \"12589\",\n                \"Name\": \"The Ripplewood Bar & Grill 2.\"\n            },\n            \"IsChainMaster\": false,\n            \"Salesperson\": {},\n            \"Warehouse\": {\n                \"Id\": 1,\n                \"Code\": \"WHSE\",\n                \"Name\": \"Warehouse\"\n            },\n            \"Active\": true,\n            \"Foodbuy\": false,\n            \"BillingAddress\": {\n                \"Id\": 73960002,\n                \"Addr1\": \"123 Broad Street\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"Hatboro\",\n                \"StateCode\": \"PA\",\n                \"ZipCode\": \"18974\",\n                \"Country\": \"\",\n                \"Phone\": \"\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"Delivery\": {},\n            \"CallDays\": {\n                \"Monday\": \"\",\n                \"Tuesday\": \"\",\n                \"Wednesday\": \"\",\n                \"Thursday\": \"\",\n                \"Friday\": \"\",\n                \"Saturday\": \"\",\n                \"Sunday\": \"\"\n            },\n            \"PriceList\": {\n                \"Id\": 10,\n                \"Code\": \"general\",\n                \"Description\": \"General\"\n            },\n            \"PrintPromotion\": true,\n            \"SpoilAllowance\": 0,\n            \"UpCharge\": {\n                \"Amount\": 0,\n                \"Account\": {}\n            },\n            \"HandlingPercent\": 0,\n            \"AssessFuelSurcharge\": false,\n            \"AutoFreight\": {\n                \"Amount\": 0,\n                \"UOM\": {\n                    \"Id\": 3,\n                    \"Name\": \"CS\",\n                    \"Description\": \"Case\"\n                }\n            },\n            \"DeliveryMinimum\": {\n                \"Amount\": 100,\n                \"OrderType\": \"Sales\"\n            },\n            \"CreditLimit\": 5000,\n            \"ARBalance\": 2000.93,\n            \"OrderBalance\": 4391.75,\n            \"AvailableCredit\": -1392.68,\n            \"Terms\": {\n                \"Id\": 19,\n                \"Code\": \"19\",\n                \"Description\": \"Net 15\"\n            },\n            \"TaxCode\": {\n                \"Id\": 2,\n                \"Code\": \"PA\",\n                \"Description\": \"PA Sales Tax\"\n            },\n            \"NonFoodTaxCode\": {},\n            \"TaxId\": \"\",\n            \"HoldReason\": {},\n            \"StatementInvoice\": true,\n            \"BarcodeOnInvoice\": false,\n            \"RequirePoNo\": false,\n            \"StandingPoNo\": \"\",\n            \"AccountingContact\": {\n                \"Id\": 254580002,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"angela@foodconnex.com\"\n            },\n            \"OfficeContact\": {\n                \"Id\": 254570002,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"SalesContact\": {\n                \"Id\": 254560002,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"InvoiceContact\": {\n                \"Id\": 0,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"Fax Options\": {\n                \"OrderAcknowledgement\": false,\n                \"PriceList\": false,\n                \"Invoice\": false\n            },\n            \"Email Options\": {\n                \"OrderAcknowledgement\": false,\n                \"PriceList\": false,\n                \"Invoice\": true\n            },\n            \"InternalComment\": \"\",\n            \"PrintedComments\": {\n                \"Line1\": \"\",\n                \"Line2\": \"\",\n                \"Line3\": \"\",\n                \"Line4\": \"\",\n                \"Line5\": \"\",\n                \"Line6\": \"\",\n                \"Line7\": \"\",\n                \"Line8\": \"\",\n                \"Line9\": \"\",\n                \"Line10\": \"\"\n            }\n        },\n        {\n            \"Id\": 1010001,\n            \"Name\": \"The Party Place!!\",\n            \"Code\": \"1010001\",\n            \"Type\": {},\n            \"Group\": {},\n            \"GuideOn\": true,\n            \"GuideDaysToRetain\": 120,\n            \"GuideSortBy\": \"C\",\n            \"GuideManaged\": false,\n            \"CLPDays\": 60,\n            \"Chain\": {},\n            \"IsChainMaster\": false,\n            \"Salesperson\": {\n                \"Id\": 3,\n                \"Code\": \"1\",\n                \"Name\": \"one\"\n            },\n            \"Warehouse\": {\n                \"Id\": 1,\n                \"Code\": \"WHSE\",\n                \"Name\": \"Warehouse\"\n            },\n            \"Active\": true,\n            \"Foodbuy\": false,\n            \"BillingAddress\": {\n                \"Id\": 6770001,\n                \"Addr1\": \"100 Main Street\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"Furlong\",\n                \"StateCode\": \"PA\",\n                \"ZipCode\": \"18992\",\n                \"Country\": \"\",\n                \"Phone\": \"\",\n                \"Fax\": \"\",\n                \"Note\": \"Red Building\"\n            },\n            \"Delivery\": {},\n            \"CallDays\": {\n                \"Monday\": \"\",\n                \"Tuesday\": \"\",\n                \"Wednesday\": \"\",\n                \"Thursday\": \"\",\n                \"Friday\": \"\",\n                \"Saturday\": \"\",\n                \"Sunday\": \"\"\n            },\n            \"PriceList\": {\n                \"Id\": 9,\n                \"Code\": \"Standard\",\n                \"Description\": \"Standard Prices\"\n            },\n            \"PrintPromotion\": true,\n            \"SpoilAllowance\": 0,\n            \"UpCharge\": {\n                \"Amount\": 0,\n                \"Account\": {}\n            },\n            \"HandlingPercent\": 0,\n            \"AssessFuelSurcharge\": true,\n            \"AutoFreight\": {\n                \"Amount\": 0,\n                \"UOM\": {\n                    \"Id\": 3,\n                    \"Name\": \"CS\",\n                    \"Description\": \"Case\"\n                }\n            },\n            \"DeliveryMinimum\": {\n                \"Amount\": 0,\n                \"OrderType\": \"Sales\"\n            },\n            \"CreditLimit\": 50000,\n            \"ARBalance\": 0,\n            \"OrderBalance\": 0,\n            \"AvailableCredit\": 50000,\n            \"Terms\": {\n                \"Id\": 19,\n                \"Code\": \"19\",\n                \"Description\": \"Net 15\"\n            },\n            \"TaxCode\": {},\n            \"NonFoodTaxCode\": {},\n            \"TaxId\": \"\",\n            \"HoldReason\": {},\n            \"StatementInvoice\": false,\n            \"BarcodeOnInvoice\": false,\n            \"RequirePoNo\": false,\n            \"StandingPoNo\": \"\",\n            \"AccountingContact\": {\n                \"Id\": 4910001,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"angela@foodconnex.com;casey@foodconnex.com;sean@foodconnex.com\"\n            },\n            \"OfficeContact\": {\n                \"Id\": 4900001,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"SalesContact\": {\n                \"Id\": 254760002,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"InvoiceContact\": {\n                \"Id\": 0,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"Fax Options\": {\n                \"OrderAcknowledgement\": false,\n                \"PriceList\": false,\n                \"Invoice\": false\n            },\n            \"Email Options\": {\n                \"OrderAcknowledgement\": false,\n                \"PriceList\": false,\n                \"Invoice\": false\n            },\n            \"InternalComment\": \"\",\n            \"PrintedComments\": {\n                \"Line1\": \"\",\n                \"Line2\": \"\",\n                \"Line3\": \"\",\n                \"Line4\": \"\",\n                \"Line5\": \"\",\n                \"Line6\": \"\",\n                \"Line7\": \"\",\n                \"Line8\": \"\",\n                \"Line9\": \"\",\n                \"Line10\": \"\"\n            }\n        },\n        {\n            \"Id\": 8370002,\n            \"Name\": \"Ripple Three\",\n            \"Code\": \"1012\",\n            \"Type\": {},\n            \"Group\": {},\n            \"GuideOn\": true,\n            \"GuideDaysToRetain\": 90,\n            \"GuideSortBy\": \"H\",\n            \"GuideManaged\": false,\n            \"CLPDays\": 60,\n            \"Chain\": {},\n            \"IsChainMaster\": false,\n            \"Salesperson\": {\n                \"Id\": 14,\n                \"Code\": \"AD1\",\n                \"Name\": \"AD 1\"\n            },\n            \"Warehouse\": {\n                \"Id\": 1,\n                \"Code\": \"WHSE\",\n                \"Name\": \"Warehouse\"\n            },\n            \"Active\": true,\n            \"Foodbuy\": false,\n            \"BillingAddress\": {\n                \"Id\": 74000002,\n                \"Addr1\": \"\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"Doylestown\",\n                \"StateCode\": \"NJ\",\n                \"ZipCode\": \"18966\",\n                \"Country\": \"\",\n                \"Phone\": \"\",\n                \"Fax\": \"(215) 794-0204\",\n                \"Note\": \"test notes\"\n            },\n            \"Delivery\": {},\n            \"CallDays\": {\n                \"Monday\": \"\",\n                \"Tuesday\": \"\",\n                \"Wednesday\": \"\",\n                \"Thursday\": \"\",\n                \"Friday\": \"\",\n                \"Saturday\": \"\",\n                \"Sunday\": \"\"\n            },\n            \"PriceList\": {\n                \"Id\": 9,\n                \"Code\": \"Standard\",\n                \"Description\": \"Standard Prices\"\n            },\n            \"PrintPromotion\": true,\n            \"SpoilAllowance\": 0,\n            \"UpCharge\": {\n                \"Amount\": 0,\n                \"Account\": {}\n            },\n            \"HandlingPercent\": 0,\n            \"AssessFuelSurcharge\": true,\n            \"AutoFreight\": {\n                \"Amount\": 0,\n                \"UOM\": {\n                    \"Id\": 3,\n                    \"Name\": \"CS\",\n                    \"Description\": \"Case\"\n                }\n            },\n            \"DeliveryMinimum\": {\n                \"Amount\": 100,\n                \"OrderType\": \"Sales\"\n            },\n            \"CreditLimit\": 250000,\n            \"ARBalance\": 420.85,\n            \"OrderBalance\": 12115.7,\n            \"AvailableCredit\": 237463.45,\n            \"Terms\": {\n                \"Id\": 19,\n                \"Code\": \"19\",\n                \"Description\": \"Net 15\"\n            },\n            \"TaxCode\": {},\n            \"NonFoodTaxCode\": {},\n            \"TaxId\": \"\",\n            \"HoldReason\": {},\n            \"StatementInvoice\": false,\n            \"BarcodeOnInvoice\": false,\n            \"RequirePoNo\": false,\n            \"StandingPoNo\": \"\",\n            \"AccountingContact\": {\n                \"Id\": 58850002,\n                \"Name\": \"Jeff\",\n                \"Fax\": \"\",\n                \"Email\": \"angela@foodconnex.com;casey@foodconnex.com;sean@foodconnex.com\"\n            },\n            \"OfficeContact\": {\n                \"Id\": 58840002,\n                \"Name\": \"\",\n                \"Fax\": \"(215) 794-0240\",\n                \"Email\": \"\"\n            },\n            \"SalesContact\": {\n                \"Id\": 58830002,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"angela@foodconnex.com;casey@foodconnex.com;sean@foodconnex.com\"\n            },\n            \"InvoiceContact\": {\n                \"Id\": 0,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"Fax Options\": {\n                \"OrderAcknowledgement\": false,\n                \"PriceList\": false,\n                \"Invoice\": false\n            },\n            \"Email Options\": {\n                \"OrderAcknowledgement\": false,\n                \"PriceList\": true,\n                \"Invoice\": true\n            },\n            \"InternalComment\": \"\",\n            \"PrintedComments\": {\n                \"Line1\": \"Test printed comment                    \",\n                \"Line2\": \"                                        \",\n                \"Line3\": \"                                        \",\n                \"Line4\": \"Test BOL Comment                        \",\n                \"Line5\": \"                                        \",\n                \"Line6\": \"                                        \",\n                \"Line7\": \"                                        \",\n                \"Line8\": \"                                        \",\n                \"Line9\": \"                                        \",\n                \"Line10\": \"                                        \"\n            }\n        }\n    ],\n    \"NumResults\": 4\n}   "}],"_postman_id":"27722eb7-f692-41cc-8c5f-0779cb953afd"},{"name":"Retrieve a customer","event":[{"listen":"test","script":{"id":"00b3d550-4b39-4b18-9def-fa7c7f7b7543","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"e87d14c5-c86e-4ade-be7e-041bc80a9430","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"a5e5326a-29a9-4578-a3a9-b5339eed9942","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId","description":"<p>List a specific customer that matches the customerId</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"}]}},"response":[{"id":"e561ba38-4846-4fc5-a008-6dbc8238e192","name":"Retrieve a customer","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId"],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}],"variable":[{"key":"customerId","value":"8360002","description":"Required. Enter a Customer ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 16:47:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=5E74D81AAD6B810056FB8FEAC0290963; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 8360002,\n            \"Name\": \"Ripple Two\",\n            \"Code\": \"1000011\",\n            \"Type\": {},\n            \"Group\": {},\n            \"GuideOn\": true,\n            \"GuideDaysToRetain\": 100,\n            \"GuideSortBy\": \"I\",\n            \"GuideManaged\": false,\n            \"CLPDays\": 60,\n            \"Chain\": {\n                \"Id\": 1000001,\n                \"Code\": \"12589\",\n                \"Name\": \"The Ripplewood Bar & Grill 2.\"\n            },\n            \"IsChainMaster\": false,\n            \"Salesperson\": {},\n            \"Warehouse\": {\n                \"Id\": 1,\n                \"Code\": \"WHSE\",\n                \"Name\": \"Warehouse\"\n            },\n            \"Active\": true,\n            \"Foodbuy\": false,\n            \"BillingAddress\": {\n                \"Id\": 73960002,\n                \"Addr1\": \"123 Broad Street\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"Hatboro\",\n                \"StateCode\": \"PA\",\n                \"ZipCode\": \"18974\",\n                \"Country\": \"\",\n                \"Phone\": \"\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"Delivery\": {},\n            \"CallDays\": {\n                \"Monday\": \"\",\n                \"Tuesday\": \"\",\n                \"Wednesday\": \"\",\n                \"Thursday\": \"\",\n                \"Friday\": \"\",\n                \"Saturday\": \"\",\n                \"Sunday\": \"\"\n            },\n            \"PriceList\": {\n                \"Id\": 10,\n                \"Code\": \"general\",\n                \"Description\": \"General\"\n            },\n            \"PrintPromotion\": true,\n            \"SpoilAllowance\": 0,\n            \"UpCharge\": {\n                \"Amount\": 0,\n                \"Account\": {}\n            },\n            \"HandlingPercent\": 0,\n            \"AssessFuelSurcharge\": false,\n            \"AutoFreight\": {\n                \"Amount\": 0,\n                \"UOM\": {\n                    \"Id\": 3,\n                    \"Name\": \"CS\",\n                    \"Description\": \"Case\"\n                }\n            },\n            \"DeliveryMinimum\": {\n                \"Amount\": 100,\n                \"OrderType\": \"Sales\"\n            },\n            \"CreditLimit\": 5000,\n            \"ARBalance\": 2000.93,\n            \"OrderBalance\": 4391.75,\n            \"AvailableCredit\": -1392.68,\n            \"Terms\": {\n                \"Id\": 19,\n                \"Code\": \"19\",\n                \"Description\": \"Net 15\"\n            },\n            \"TaxCode\": {\n                \"Id\": 2,\n                \"Code\": \"PA\",\n                \"Description\": \"PA Sales Tax\"\n            },\n            \"NonFoodTaxCode\": {},\n            \"TaxId\": \"\",\n            \"HoldReason\": {},\n            \"StatementInvoice\": true,\n            \"BarcodeOnInvoice\": false,\n            \"RequirePoNo\": false,\n            \"StandingPoNo\": \"\",\n            \"AccountingContact\": {\n                \"Id\": 254580002,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"angela@foodconnex.com\"\n            },\n            \"OfficeContact\": {\n                \"Id\": 254570002,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"SalesContact\": {\n                \"Id\": 254560002,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"InvoiceContact\": {\n                \"Id\": 0,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"Fax Options\": {\n                \"OrderAcknowledgement\": false,\n                \"PriceList\": false,\n                \"Invoice\": false\n            },\n            \"Email Options\": {\n                \"OrderAcknowledgement\": false,\n                \"PriceList\": false,\n                \"Invoice\": true\n            },\n            \"InternalComment\": \"\",\n            \"PrintedComments\": {\n                \"Line1\": \"\",\n                \"Line2\": \"\",\n                \"Line3\": \"\",\n                \"Line4\": \"\",\n                \"Line5\": \"\",\n                \"Line6\": \"\",\n                \"Line7\": \"\",\n                \"Line8\": \"\",\n                \"Line9\": \"\",\n                \"Line10\": \"\"\n            }\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"a5e5326a-29a9-4578-a3a9-b5339eed9942"}],"id":"4e6c819b-2031-49bb-8ba8-1ea82fcfa46e","_postman_id":"4e6c819b-2031-49bb-8ba8-1ea82fcfa46e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Customer Charges","item":[{"name":"List all charges for a customer","event":[{"listen":"test","script":{"id":"cc82ec1f-2dc9-45a1-96e0-54aaed8e4527","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"9ad4f68e-b889-426a-a0c5-7c43b297772d","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"c9ad6ba2-8c13-4df4-ace9-ec29f123bb91","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/charges","description":"<p>List all charges for a customer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","charges"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"}]}},"response":[{"id":"f8457d32-9db4-4f4c-8d15-d7ebc3c688ae","name":"List all customer's charges","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/charges","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","charges"],"variable":[{"key":"customerId","value":"8360002","description":"Required. Enter a Customer ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 16:48:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=0246D925202E26330FD1ABF595917B12; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 8360002,\n            \"Name\": \"Ripple Two\",\n            \"Code\": \"1000011\",\n            \"Charges\": [\n                {\n                    \"Id\": 36,\n                    \"Code\": \"CC\",\n                    \"Descrip\": \"Credit Card Fee\",\n                    \"Type\": \"Price\",\n                    \"Amount\": 2,\n                    \"UOM\": \"% of Total\",\n                    \"IncludeIn\": \"Trans Misc\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"c9ad6ba2-8c13-4df4-ace9-ec29f123bb91"},{"name":"Retrieve an individual charge for a customer","event":[{"listen":"test","script":{"id":"1c5fc286-2693-473e-bc79-37a41dffc45f","exec":["\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"1e1ad932-6e9b-4390-ac56-adeec3dc420d","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"9ab1ab89-13ce-4a8d-8066-bbcd605b9919","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/charges/:chargeId","description":"<p>List a specific charge that matches the chargeId for a customer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","charges",":chargeId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"},{"description":{"content":"<p>Required. Enter a Charge ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerChargeId}}","key":"chargeId"}]}},"response":[{"id":"e3b79f95-7a86-4015-9acf-259239a64699","name":"Retrieve a customer's charge","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/charges/:chargeId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","charges",":chargeId"],"variable":[{"key":"customerId","value":"8360002","description":"Required. Enter a Customer ID"},{"key":"chargeId","value":"36","description":"Required. Enter a Charge ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 16:49:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=7ACB46AD687E2052B1BBD5E841F634FA; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 8360002,\n            \"Name\": \"Ripple Two\",\n            \"Code\": \"1000011\",\n            \"Charges\": [\n                {\n                    \"Id\": 36,\n                    \"Code\": \"CC\",\n                    \"Descrip\": \"Credit Card Fee\",\n                    \"Type\": \"Price\",\n                    \"Amount\": 2,\n                    \"UOM\": \"% of Total\",\n                    \"IncludeIn\": \"Trans Misc\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"9ab1ab89-13ce-4a8d-8066-bbcd605b9919"},{"name":"List all charges for multiple customers","event":[{"listen":"test","script":{"id":"cc82ec1f-2dc9-45a1-96e0-54aaed8e4527","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"9ad4f68e-b889-426a-a0c5-7c43b297772d","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}}],"id":"17a6c7a9-9426-4ac5-b9e0-fb84d05ef71a","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/charges","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers","charges"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtCustomerCode and ltCustomerCode to page through a long list of customers.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtCustomerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is less than the value provided</p>\n","type":"text/plain"},"key":"ltCustomerCode","value":""}],"variable":[]}},"response":[],"_postman_id":"17a6c7a9-9426-4ac5-b9e0-fb84d05ef71a"}],"id":"46e68d7c-668a-438b-851a-d3a5e9df63c8","_postman_id":"46e68d7c-668a-438b-851a-d3a5e9df63c8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Customer Custom Fields","item":[{"name":"List all custom fields for a customer","event":[{"listen":"test","script":{"id":"41510242-7776-4233-8c77-8a3a21d80688","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"dcdc21d1-63f6-43b2-ad58-e355998d21ff","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"7b4ffbff-465d-44f9-9679-35b58bd295a9","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/custom-fields","description":"<p>List all the Custom Fields for a customer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","custom-fields"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"}]}},"response":[{"id":"24a51e2b-6dd5-48a0-95a9-591a745e8305","name":"List all customer's custom fields","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/custom-fields","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","custom-fields"],"variable":[{"key":"customerId","value":"8360002","description":"Required. Enter a Customer ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 16:49:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=2943D7F1486B11FCD88744FD1F68A6E2; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 8360002,\n            \"Name\": \"Ripple Two\",\n            \"Code\": \"1000011\",\n            \"CustomFields\": [\n                {\n                    \"HeaderId\": 1,\n                    \"DetailId\": 1,\n                    \"ExportPartner\": \"BAR-S\",\n                    \"FieldLabel\": \"BAR-S Customer\",\n                    \"Value\": \"\"\n                },\n                {\n                    \"HeaderId\": 12,\n                    \"DetailId\": 8,\n                    \"ExportPartner\": \"Broadliner\",\n                    \"FieldLabel\": \"Broadliner\",\n                    \"Value\": \"\"\n                },\n                {\n                    \"HeaderId\": 21,\n                    \"DetailId\": 1,\n                    \"ExportPartner\": \"Buyers Edge\",\n                    \"FieldLabel\": \"Export\",\n                    \"Value\": \"true\"\n                },\n                {\n                    \"HeaderId\": 23,\n                    \"DetailId\": 1,\n                    \"ExportPartner\": \"Dax Order Import\",\n                    \"FieldLabel\": \"Store Number\",\n                    \"Value\": \"\"\n                },\n                {\n                    \"HeaderId\": 23,\n                    \"DetailId\": 2,\n                    \"ExportPartner\": \"Dax Order Import\",\n                    \"FieldLabel\": \"Store Type\",\n                    \"Value\": \"\"\n                },\n                {\n                    \"HeaderId\": 26,\n                    \"DetailId\": 5,\n                    \"ExportPartner\": \"IRP Label\",\n                    \"FieldLabel\": \"LabelOption1\",\n                    \"Value\": \"\"\n                },\n                {\n                    \"HeaderId\": 17,\n                    \"DetailId\": 1,\n                    \"ExportPartner\": \"R365\",\n                    \"FieldLabel\": \"Export\",\n                    \"Value\": \"\"\n                },\n                {\n                    \"HeaderId\": 17,\n                    \"DetailId\": 4,\n                    \"ExportPartner\": \"R365\",\n                    \"FieldLabel\": \"Location Code\",\n                    \"Value\": \"\"\n                },\n                {\n                    \"HeaderId\": 17,\n                    \"DetailId\": 5,\n                    \"ExportPartner\": \"R365\",\n                    \"FieldLabel\": \"SFTP Directory\",\n                    \"Value\": \"\"\n                },\n                {\n                    \"HeaderId\": 17,\n                    \"DetailId\": 3,\n                    \"ExportPartner\": \"R365\",\n                    \"FieldLabel\": \"SFTP Password\",\n                    \"Value\": \"ims\"\n                },\n                {\n                    \"HeaderId\": 17,\n                    \"DetailId\": 2,\n                    \"ExportPartner\": \"R365\",\n                    \"FieldLabel\": \"SFTP Username\",\n                    \"Value\": \"\"\n                },\n                {\n                    \"HeaderId\": 7,\n                    \"DetailId\": 5,\n                    \"ExportPartner\": \"Trackmax\",\n                    \"FieldLabel\": \"Trackmax\",\n                    \"Value\": \"\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 12\n}"}],"_postman_id":"7b4ffbff-465d-44f9-9679-35b58bd295a9"},{"name":"List all custom fields for a header","event":[{"listen":"test","script":{"id":"6e17cd44-1bca-483d-bf31-1fa14fdbc13b","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"b1d5e04f-a5fe-4fbd-a895-c8e592ff44b4","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"50a61e3d-43a7-4a58-8186-57d3a14b2a5f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/custom-fields/:headerId","description":"<p>Get a list of Custom Fields for a vendor</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","custom-fields",":headerId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"},{"description":{"content":"<p>Required. Enter a Header ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerCustomFieldHeaderId}}","key":"headerId"}]}},"response":[{"id":"ffd98ca0-f681-4b9f-a6ff-8ac9d42d5dd1","name":"List all custom fields for a header","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/custom-fields/:headerId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","custom-fields",":headerId"],"variable":[{"key":"customerId","value":"8360002","description":"Required. Enter a Customer ID"},{"key":"headerId","value":"23","description":"Required. Enter a Header ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 16:50:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 8360002,\n            \"Name\": \"Ripple Two\",\n            \"Code\": \"1000011\",\n            \"CustomFields\": [\n                {\n                    \"HeaderId\": 23,\n                    \"DetailId\": 1,\n                    \"ExportPartner\": \"Dax Order Import\",\n                    \"FieldLabel\": \"Store Number\",\n                    \"Value\": \"\"\n                },\n                {\n                    \"HeaderId\": 23,\n                    \"DetailId\": 2,\n                    \"ExportPartner\": \"Dax Order Import\",\n                    \"FieldLabel\": \"Store Type\",\n                    \"Value\": \"\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 2\n}"}],"_postman_id":"50a61e3d-43a7-4a58-8186-57d3a14b2a5f"},{"name":"Retrieve a custom field","event":[{"listen":"test","script":{"id":"29cc11f2-c4f6-4b09-b103-7bc86af1cedb","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"35e1b6ed-3778-474f-b88a-0c10815e612a","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"6360995f-982f-4312-89d1-e6df2cf1907b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/custom-fields/:headerId/:detailId","description":"<p>Get a list of Custom Fields for a vendor</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","custom-fields",":headerId",":detailId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"},{"description":{"content":"<p>Required. Enter a Header ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerCustomFieldHeaderId}}","key":"headerId"},{"description":{"content":"<p>Required. Enter a Detail ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerCustomFieldDetailId}}","key":"detailId"}]}},"response":[{"id":"844f2ef3-db65-4732-a99f-2192b0984eaf","name":"Retrieve a custom field","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/custom-fields/:headerId/:detailId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","custom-fields",":headerId",":detailId"],"variable":[{"key":"customerId","value":"8360002","description":"Required. Enter a Customer ID"},{"key":"headerId","value":"23","description":"Required. Enter a Header ID"},{"key":"detailId","value":"2","description":"Required. Enter a Detail ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 16:51:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 8360002,\n            \"Name\": \"Ripple Two\",\n            \"Code\": \"1000011\",\n            \"CustomFields\": [\n                {\n                    \"HeaderId\": 23,\n                    \"DetailId\": 2,\n                    \"ExportPartner\": \"Dax Order Import\",\n                    \"FieldLabel\": \"Store Type\",\n                    \"Value\": \"\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"6360995f-982f-4312-89d1-e6df2cf1907b"},{"name":"List all custom fields for multiple customers","event":[{"listen":"test","script":{"id":"41510242-7776-4233-8c77-8a3a21d80688","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"dcdc21d1-63f6-43b2-ad58-e355998d21ff","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}}],"id":"0695481d-86a8-462c-9143-cfd2a2e8bd2e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/custom-fields","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers","custom-fields"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtCustomerCode and ltCustomerCode to page through a long list of customers.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtCustomerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is less than the value provided</p>\n","type":"text/plain"},"key":"ltCustomerCode","value":""}],"variable":[]}},"response":[],"_postman_id":"0695481d-86a8-462c-9143-cfd2a2e8bd2e"}],"id":"d0925723-f5ee-4ece-96e4-3bde3678e0f5","_postman_id":"d0925723-f5ee-4ece-96e4-3bde3678e0f5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Customer Customer Items","item":[{"name":"List all customer items for a customer","event":[{"listen":"test","script":{"id":"558a4e5a-01bc-45b4-af2f-4b2250a0d13f","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"c801e506-2307-4214-bb3e-439a8b5f93b0","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"5a2d58b9-6f1a-4f3b-87e0-830eafa77bf5","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/customer-items","description":"<p>List all the Customer Items for a specific customer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","customer-items"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"}]}},"response":[{"id":"21adeaed-b6f7-47ea-b2ef-0624177a4ac9","name":"List all customer's customer items","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/customer-items","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","customer-items"],"variable":[{"key":"customerId","value":"8370002","description":"Required. Enter a Customer ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 16:54:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=3FABD681A129A36C7C73ED590F4B0199; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 8370002,\n            \"Name\": \"Ripple Three\",\n            \"Code\": \"1012\",\n            \"CustomerItems\": [\n                {\n                    \"Item\": {\n                        \"Id\": 95890002,\n                        \"Code\": \"0002 FG Catch\",\n                        \"Description\": \"Finished Good Catch\"\n                    },\n                    \"Id\": 144,\n                    \"Code\": \"123456\",\n                    \"Description\": \"FG Catch Item Desk\",\n                    \"OrderUOM\": {},\n                    \"PriceUOM\": {}\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"5a2d58b9-6f1a-4f3b-87e0-830eafa77bf5"},{"name":"Retrieve a customer's customer items","event":[{"listen":"test","script":{"id":"93399188-9ce3-4c4b-8b37-47086e19f425","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"d61267d9-8d6c-4ed9-a626-e090ab84b2f7","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"f7d4b466-6e68-42cd-9561-6f1e2006f499","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/customer-items/:custitemId","description":"<p>List a specific Customer Item that matches the custitemId for a customer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","customer-items",":custitemId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"},{"description":{"content":"<p>Required. Enter a Customer Iitem ID</p>\n","type":"text/plain"},"type":"any","value":"{{custItemId}}","key":"custitemId"}]}},"response":[{"id":"27c052d8-06d2-4a8a-bb1a-b00bb0a9db0e","name":"Retrieve a customer's customer items","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/customer-items/:custitemId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","customer-items",":custitemId"],"variable":[{"key":"customerId","value":"8370002","description":"Required. Enter a Customer ID"},{"key":"custitemId","value":"144","description":"Required. Enter a Customer Iitem ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 16:55:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=69988CF8F1F39DE1B3245EAB2428CD2E; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 8370002,\n            \"Name\": \"Ripple Three\",\n            \"Code\": \"1012\",\n            \"CustomerItems\": [\n                {\n                    \"Item\": {\n                        \"Id\": 95890002,\n                        \"Code\": \"0002 FG Catch\",\n                        \"Description\": \"Finished Good Catch\"\n                    },\n                    \"Id\": 144,\n                    \"Code\": \"123456\",\n                    \"Description\": \"FG Catch Item Desk\",\n                    \"OrderUOM\": {},\n                    \"PriceUOM\": {}\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"f7d4b466-6e68-42cd-9561-6f1e2006f499"},{"name":"List all customer items for multiple customers","event":[{"listen":"test","script":{"id":"558a4e5a-01bc-45b4-af2f-4b2250a0d13f","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"c801e506-2307-4214-bb3e-439a8b5f93b0","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}}],"id":"277b6fd8-3963-42f9-b9d4-dceb4d8fafb6","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/customer-items","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers","customer-items"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtCustomerCode and ltCustomerCode to page through a long list of customers.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtCustomerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is less than the value provided</p>\n","type":"text/plain"},"key":"ltCustomerCode","value":""}],"variable":[]}},"response":[],"_postman_id":"277b6fd8-3963-42f9-b9d4-dceb4d8fafb6"}],"id":"21385831-6d27-4335-85f4-80dff111e5ea","_postman_id":"21385831-6d27-4335-85f4-80dff111e5ea","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Customer Groups","item":[{"name":"List all customer groups","event":[{"listen":"test","script":{"id":"061db269-36ed-4444-aaca-e034a6ec3a12","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"c5609a33-25e3-4615-9c81-5c8aee398220","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"27091014-c363-4f4b-99bb-978f2db4244c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customer-groups","description":"<p>List all the Customer Groups</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customer-groups"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String of text to be searched on</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[]}},"response":[{"id":"0064801c-d79e-4103-9479-4dc51ab68a55","name":"List all customer groups","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customer-groups","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customer-groups"],"query":[{"key":"pattern","value":"","description":"Optional. String of text to be searched on","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 18:25:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=864A909C028C0B93F256A2B3340052A5; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"CustomerGroups\": [\n        {\n            \"Id\": 12,\n            \"Code\": \"002\",\n            \"Description\": \"group 002 Test Change\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 13,\n            \"Code\": \"003\",\n            \"Description\": \"group 003\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 15,\n            \"Code\": \"005\",\n            \"Description\": \"group 005\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 16,\n            \"Code\": \"006\",\n            \"Description\": \"group 006\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 17,\n            \"Code\": \"007\",\n            \"Description\": \"group 007\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 18,\n            \"Code\": \"008\",\n            \"Description\": \"group 008\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 19,\n            \"Code\": \"009\",\n            \"Description\": \"group 009\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 20,\n            \"Code\": \"010\",\n            \"Description\": \"group 010\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 21,\n            \"Code\": \"011\",\n            \"Description\": \"group 011\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 22,\n            \"Code\": \"012\",\n            \"Description\": \"group 012\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 23,\n            \"Code\": \"013\",\n            \"Description\": \"group 013\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 24,\n            \"Code\": \"014\",\n            \"Description\": \"grop 014\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 25,\n            \"Code\": \"015\",\n            \"Description\": \"group 015\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 26,\n            \"Code\": \"016\",\n            \"Description\": \"group 016\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 27,\n            \"Code\": \"017\",\n            \"Description\": \"group 017\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 4,\n            \"Code\": \"betsy\",\n            \"Description\": \"betsy's group\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 6,\n            \"Code\": \"CAPS\",\n            \"Description\": \"CAPS\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 3,\n            \"Code\": \"CHAIN\",\n            \"Description\": \"chain store\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 2,\n            \"Code\": \"dist\",\n            \"Description\": \"distributor\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 10,\n            \"Code\": \"GROC\",\n            \"Description\": \"GROCERY\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 14,\n            \"Code\": \"group004\",\n            \"Description\": \"group 004\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 5,\n            \"Code\": \"NEW\",\n            \"Description\": \"NEW GROUP\",\n            \"IsIndependent\": true\n        },\n        {\n            \"Id\": 7,\n            \"Code\": \"promo\",\n            \"Description\": \"all customer promo\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 1,\n            \"Code\": \"retail\",\n            \"Description\": \"retail\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 30,\n            \"Code\": \"Ripple\",\n            \"Description\": \"Ripple\",\n            \"IsIndependent\": false\n        },\n        {\n            \"Id\": 28,\n            \"Code\": \"SHER\",\n            \"Description\": \"SHERMAN\",\n            \"IsIndependent\": false\n        }\n    ],\n    \"NumResults\": 26\n}"}],"_postman_id":"27091014-c363-4f4b-99bb-978f2db4244c"},{"name":"List all groups for a customer","event":[{"listen":"test","script":{"id":"06dbf4d8-5d92-4f09-8639-a50be2e90b39","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"ad352796-5ba0-414b-894d-42b2157933a6","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"6058dddc-c88c-495b-822b-4c161fea34ff","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/groups","description":"<p>List all Groups for a customer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","groups"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"}]}},"response":[{"id":"857b19e3-8628-43c3-a890-78eb251db271","name":"List all customer's assigned groups","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/groups","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","groups"],"variable":[{"key":"customerId","value":"60380002","description":"Required. Enter a Customer ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 17:00:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=97B281FB18C01B59BFD08D08D2A87566; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 60380002,\n            \"Name\": \"Test Auto Number\",\n            \"Code\": \"10000\",\n            \"Groups\": [\n                {\n                    \"Id\": 13,\n                    \"Code\": \"003\",\n                    \"Description\": \"group 003\",\n                    \"IsPrimary\": false\n                },\n                {\n                    \"Id\": 15,\n                    \"Code\": \"005\",\n                    \"Description\": \"group 005\",\n                    \"IsPrimary\": true\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 2\n}"}],"_postman_id":"6058dddc-c88c-495b-822b-4c161fea34ff"},{"name":"Retrieve a customer's group","event":[{"listen":"test","script":{"id":"d8ecbd42-9485-411a-8f76-4398fc7af61c","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"50e35c25-b4c9-4ab5-bb50-9a599f6db5cd","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"a890f63a-110d-4b15-82a9-8f207a5e0aa0","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/groups/:groupId","description":"<p>List a specific Group that matches groupId for a customer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","groups",":groupId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"},{"description":{"content":"<p>Required. Enter a Group ID</p>\n","type":"text/plain"},"type":"any","value":"{{groupId}}","key":"groupId"}]}},"response":[],"_postman_id":"a890f63a-110d-4b15-82a9-8f207a5e0aa0"},{"name":"List all groups for multiple customers","event":[{"listen":"test","script":{"id":"06dbf4d8-5d92-4f09-8639-a50be2e90b39","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"ad352796-5ba0-414b-894d-42b2157933a6","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}}],"id":"da5867c6-a647-4975-89f6-15ff9ec270aa","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers","groups"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtCustomerCode and ltCustomerCode to page through a long list of customers.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtCustomerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is less than the value provided</p>\n","type":"text/plain"},"key":"ltCustomerCode","value":""}],"variable":[]}},"response":[],"_postman_id":"da5867c6-a647-4975-89f6-15ff9ec270aa"}],"id":"293ed83a-72b5-480a-9f22-fe588e9a2924","_postman_id":"293ed83a-72b5-480a-9f22-fe588e9a2924","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Customer Price Keys","item":[{"name":"List all price keys for a customer","event":[{"listen":"test","script":{"id":"eb13396c-1048-4f7e-9b0c-3d253e92b2e2","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"cb698741-1129-4e30-9c1b-ab4141d5f2c1","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"1a46cf33-07fd-4b05-8af1-8a12f1061b45","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/price-keys","description":"<p>List all the Price Keys for a customer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","price-keys"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"}]}},"response":[{"id":"b9a798e2-6f73-4b74-bd23-4bef9a5cbd1b","name":"List all customer's price keys","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/price-keys","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","price-keys"],"variable":[{"key":"customerId","value":"60380002","description":"Required. Enter a Customer ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 17:03:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=92C1960483013F0BA8DB651544D74085; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 60380002,\n            \"Name\": \"Test Auto Number\",\n            \"Code\": \"10000\",\n            \"PriceKeys\": [\n                {\n                    \"Id\": 640002,\n                    \"Code\": \"1town\",\n                    \"Description\": \"town hall\",\n                    \"IsPrimary\": false\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"1a46cf33-07fd-4b05-8af1-8a12f1061b45"},{"name":"Retrieve a customer's price key","event":[{"listen":"test","script":{"id":"bf4e64b4-950a-4075-b546-5bb490d17774","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"e2b6c733-c144-45d5-afe8-3f0d5b386888","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"f2033702-3627-401a-921d-8e2da465a95b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/price-keys/:pricekeyId","description":"<p>List a specific Price Key that matches :pricekeyId for a customer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","price-keys",":pricekeyId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"},{"description":{"content":"<p>Required. Enter a Price Key ID</p>\n","type":"text/plain"},"type":"any","value":"{{pricekeyId}}","key":"pricekeyId"}]}},"response":[{"id":"761fc2bc-31a5-4957-9932-0c38b9c5adb4","name":"Retrieve a customer's price key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/price-keys/:pricekeyId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","price-keys",":pricekeyId"],"variable":[{"key":"customerId","value":"60380002","description":"Required. Enter a Customer ID"},{"key":"pricekeyId","value":"640002","description":"Required. Enter a Price Key ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 17:03:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=4D96CAA980C1697B0FA2F8EF40CFCFA1; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 60380002,\n            \"Name\": \"Test Auto Number\",\n            \"Code\": \"10000\",\n            \"PriceKeys\": [\n                {\n                    \"Id\": 640002,\n                    \"Code\": \"1town\",\n                    \"Description\": \"town hall\",\n                    \"IsPrimary\": false\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"f2033702-3627-401a-921d-8e2da465a95b"},{"name":"List all price keys for multiple customers","event":[{"listen":"test","script":{"id":"eb13396c-1048-4f7e-9b0c-3d253e92b2e2","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"cb698741-1129-4e30-9c1b-ab4141d5f2c1","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}}],"id":"ce476121-2e27-4690-a583-7c9bc2ff208a","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/price-keys","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers","price-keys"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtCustomerCode and ltCustomerCode to page through a long list of customers.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtCustomerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is less than the value provided</p>\n","type":"text/plain"},"key":"ltCustomerCode","value":""}],"variable":[]}},"response":[],"_postman_id":"ce476121-2e27-4690-a583-7c9bc2ff208a"}],"id":"860907da-d26a-476d-8b20-68dff9d93a32","_postman_id":"860907da-d26a-476d-8b20-68dff9d93a32","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Customer Secure Items","item":[{"name":"List all secure items for a customer","event":[{"listen":"prerequest","script":{"id":"6fd8f81d-a3c5-4d94-a3b6-f8d3a819f470","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"5cd532bf-99c2-4507-968e-0a386de926ac","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"111b38fb-b205-45e2-a9b5-2fd110bea9ce","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/secure-items","description":"<p>List all the Secure Items for a customer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","secure-items"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"}]}},"response":[],"_postman_id":"111b38fb-b205-45e2-a9b5-2fd110bea9ce"},{"name":"Retrieve a customer's secure item","event":[{"listen":"prerequest","script":{"id":"4fe38c73-9b35-4ce5-b015-66d6290896a1","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"e8022037-ab3c-43ac-9091-e053acae505c","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"67dd83e6-73f1-4c9c-a2e3-e350099e735c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/secure-items/:itemId","description":"<p>List a specific Secure Item that matches itemId for a customer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","secure-items",":itemId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"},{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"67dd83e6-73f1-4c9c-a2e3-e350099e735c"},{"name":"List all secure items for multiple customers","event":[{"listen":"prerequest","script":{"id":"6fd8f81d-a3c5-4d94-a3b6-f8d3a819f470","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"5cd532bf-99c2-4507-968e-0a386de926ac","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e3ec4f11-8f56-49b9-b0cf-db7cd5913a86","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/secure-items","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers","secure-items"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtCustomerCode and ltCustomerCode to page through a long list of customers.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtCustomerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is less than the value provided</p>\n","type":"text/plain"},"key":"ltCustomerCode","value":""}],"variable":[]}},"response":[],"_postman_id":"e3ec4f11-8f56-49b9-b0cf-db7cd5913a86"}],"id":"338be09f-9e0d-475b-a3cd-749a0c3eae04","_postman_id":"338be09f-9e0d-475b-a3cd-749a0c3eae04","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Customer Ship To","item":[{"name":"List all ship tos for a customer","event":[{"listen":"prerequest","script":{"id":"0c632c78-c556-4d9c-8bf5-4221df6e615a","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"587f370c-d771-439f-8bd8-af15012283a5","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"ab8d7df9-2687-4e12-9b96-876bc0255436","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/ship-tos","description":"<p>List all vendors with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","ship-tos"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"}]}},"response":[{"id":"82eb7d4c-a916-4f06-894e-ee70fea2863a","name":"List all customer's ship tos","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/ship-tos","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","ship-tos"],"variable":[{"key":"customerId","value":"8370002","description":"Required. Enter a Customer ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 17:09:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=CE91252E2A7DDF2F4099D0B9F6974904; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 8370002,\n            \"Name\": \"Ripple Three\",\n            \"Code\": \"1012\",\n            \"ShipTos\": [\n                {\n                    \"Id\": 2,\n                    \"Code\": \"002\",\n                    \"Name\": \"Ripple Three\",\n                    \"IsPrimary\": false,\n                    \"Address\": {\n                        \"Id\": 327710002,\n                        \"Addr1\": \"123 Any Street\",\n                        \"Addr2\": \"\",\n                        \"Addr3\": \"\",\n                        \"Addr4\": \"\",\n                        \"Addr5\": \"\",\n                        \"City\": \"Doylestown \",\n                        \"StateCode\": \"PA\",\n                        \"ZipCode\": \"18925\",\n                        \"Country\": \"\",\n                        \"Phone\": \"\",\n                        \"Fax\": \"\",\n                        \"Note\": \"\"\n                    },\n                    \"Route\": {},\n                    \"StopNumber\": 0,\n                    \"ShipDays\": [\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Monday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": true,\n                            \"DayOfWeek\": \"Tuesday\",\n                            \"Route\": {\n                                \"Id\": 15,\n                                \"Code\": \"DELCO\",\n                                \"Description\": \"DELAWARE COUNTY\"\n                            },\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Wednesday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Thursday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Friday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Saturday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Sunday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        }\n                    ],\n                    \"Latitude\": 0,\n                    \"Longitude\": 0,\n                    \"StartTime\": \"\",\n                    \"EndTime\": \"\",\n                    \"OfficeEmail\": \"\",\n                    \"AccountingEmail\": \"angela@foodconnex.com\"\n                },\n                {\n                    \"Id\": 1,\n                    \"Code\": \"Same\",\n                    \"Name\": \"Ripple Three\",\n                    \"IsPrimary\": false,\n                    \"Address\": {\n                        \"Id\": 80660002,\n                        \"Addr1\": \"\",\n                        \"Addr2\": \"\",\n                        \"Addr3\": \"\",\n                        \"Addr4\": \"\",\n                        \"Addr5\": \"\",\n                        \"City\": \"Doylestown\",\n                        \"StateCode\": \"PA\",\n                        \"ZipCode\": \"18966\",\n                        \"Country\": \"\",\n                        \"Phone\": \"\",\n                        \"Fax\": \"(215) 794-0204\",\n                        \"Note\": \"\"\n                    },\n                    \"Route\": {\n                        \"Id\": 1,\n                        \"Code\": \"Phl\",\n                        \"Description\": \"Greater Philadelphia Area\"\n                    },\n                    \"StopNumber\": 0,\n                    \"ShipDays\": [\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Monday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": true,\n                            \"DayOfWeek\": \"Tuesday\",\n                            \"Route\": {\n                                \"Id\": 15,\n                                \"Code\": \"DELCO\",\n                                \"Description\": \"DELAWARE COUNTY\"\n                            },\n                            \"StopNumber\": 5\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Wednesday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Thursday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": true,\n                            \"DayOfWeek\": \"Friday\",\n                            \"Route\": {\n                                \"Id\": 4,\n                                \"Code\": \"DWa\",\n                                \"Description\": \"DelawareA\"\n                            },\n                            \"StopNumber\": 10\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Saturday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Sunday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        }\n                    ],\n                    \"Latitude\": 0,\n                    \"Longitude\": 0,\n                    \"StartTime\": \"\",\n                    \"EndTime\": \"\",\n                    \"OfficeEmail\": \"\",\n                    \"AccountingEmail\": \"\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 2\n}"}],"_postman_id":"ab8d7df9-2687-4e12-9b96-876bc0255436"},{"name":"Retrieve a customer's ship to","event":[{"listen":"prerequest","script":{"id":"50192f15-914a-4725-a0ff-8251594869f1","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"a1063dbf-2745-467b-87dc-d33c766f085a","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"93cdaf1f-f2fa-4494-9062-dfbe55801c56","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/ship-tos/:shiptoId","description":"<p>List all vendors with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","ship-tos",":shiptoId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"},{"description":{"content":"<p>Required. Enter a Ship To ID</p>\n","type":"text/plain"},"type":"any","value":"{{shiptoId}}","key":"shiptoId"}]}},"response":[{"id":"e2da040c-2b9d-450a-8ad4-2058efc73563","name":"Retrieve a customer's ship to","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/ship-tos/:shiptoId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","ship-tos",":shiptoId"],"variable":[{"key":"customerId","value":"8370002","description":"Required. Enter a Customer ID"},{"key":"shiptoId","value":"2","description":"Required. Enter a Ship To ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 17:10:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=C831994790BB79B51030408C65A76359; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 8370002,\n            \"Name\": \"Ripple Three\",\n            \"Code\": \"1012\",\n            \"ShipTos\": [\n                {\n                    \"Id\": 2,\n                    \"Code\": \"002\",\n                    \"Name\": \"Ripple Three\",\n                    \"IsPrimary\": false,\n                    \"Address\": {\n                        \"Id\": 327710002,\n                        \"Addr1\": \"123 Any Street\",\n                        \"Addr2\": \"\",\n                        \"Addr3\": \"\",\n                        \"Addr4\": \"\",\n                        \"Addr5\": \"\",\n                        \"City\": \"Doylestown \",\n                        \"StateCode\": \"PA\",\n                        \"ZipCode\": \"18925\",\n                        \"Country\": \"\",\n                        \"Phone\": \"\",\n                        \"Fax\": \"\",\n                        \"Note\": \"\"\n                    },\n                    \"Route\": {},\n                    \"StopNumber\": 0,\n                    \"ShipDays\": [\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Monday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": true,\n                            \"DayOfWeek\": \"Tuesday\",\n                            \"Route\": {\n                                \"Id\": 15,\n                                \"Code\": \"DELCO\",\n                                \"Description\": \"DELAWARE COUNTY\"\n                            },\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Wednesday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Thursday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Friday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Saturday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        },\n                        {\n                            \"isSelected\": false,\n                            \"DayOfWeek\": \"Sunday\",\n                            \"Route\": {},\n                            \"StopNumber\": 0\n                        }\n                    ],\n                    \"Latitude\": 0,\n                    \"Longitude\": 0,\n                    \"StartTime\": \"\",\n                    \"EndTime\": \"\",\n                    \"OfficeEmail\": \"\",\n                    \"AccountingEmail\": \"angela@foodconnex.com\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"93cdaf1f-f2fa-4494-9062-dfbe55801c56"},{"name":"List all ship tos for multiple customers","event":[{"listen":"prerequest","script":{"id":"0c632c78-c556-4d9c-8bf5-4221df6e615a","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"587f370c-d771-439f-8bd8-af15012283a5","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"42f223c1-2d87-4321-86be-2e60fd7216cb","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/ship-tos","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers","ship-tos"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtCustomerCode and ltCustomerCode to page through a long list of customers.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtCustomerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is less than the value provided</p>\n","type":"text/plain"},"key":"ltCustomerCode","value":""}],"variable":[]}},"response":[],"_postman_id":"42f223c1-2d87-4321-86be-2e60fd7216cb"}],"id":"53aac01d-700d-40ba-b9a7-95ebe65c0625","_postman_id":"53aac01d-700d-40ba-b9a7-95ebe65c0625","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Customer Specs","item":[{"name":"List all specs for a customer","event":[{"listen":"prerequest","script":{"id":"c38e0ef0-329a-43bc-826a-e2edc18383d8","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"71dd192f-e227-4845-a4d8-04913d785506","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r",""],"type":"text/javascript","packages":{}}}],"id":"a38f7ba1-6189-4fc6-aadf-0c46a0762f61","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/specs","description":"<p>List all vendors with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","specs"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"}]}},"response":[{"id":"35d9487a-7143-4bc7-9c2b-563d8b5515e1","name":"List all customer's specs","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/specs","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","specs"],"variable":[{"key":"customerId","value":"60380002","description":"Required. Enter a Customer ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 17:12:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=02AEFD00EDA5809339A3D5291575C485; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 60380002,\n            \"Name\": \"Test Auto Number\",\n            \"Code\": \"10000\",\n            \"Specs\": [\n                {\n                    \"Item\": {\n                        \"Id\": 106570002,\n                        \"Code\": \"001 6oz med\",\n                        \"Description\": \"6 ounce Medallion \"\n                    },\n                    \"Id\": 240001,\n                    \"Code\": \"6oz\",\n                    \"Description\": \"6 oz.Cut\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"a38f7ba1-6189-4fc6-aadf-0c46a0762f61"},{"name":"List all specs for a customer and item","event":[{"listen":"prerequest","script":{"id":"d3a69ab7-1b35-4759-a258-15da4bce957b","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"a0b8e6da-05dd-4d83-8cc1-50bdbd52fa90","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"ba1fda91-6366-4e4c-89f6-ec03f70481fe","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/specs/:itemId","description":"<p>List all vendors with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","specs",":itemId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"},{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[{"id":"d550acfe-b7c8-4c94-9736-efc28ea031aa","name":"List all customer's specs for an item","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/specs/:itemId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","specs",":itemId"],"variable":[{"key":"customerId","value":"60380002","description":"Required. Enter a Customer ID"},{"key":"itemId","value":"106570002","description":"Required. Enter an Item ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 17:13:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=06D3F57D29E845BD7EE76A006A171F54; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 60380002,\n            \"Name\": \"Test Auto Number\",\n            \"Code\": \"10000\",\n            \"Specs\": [\n                {\n                    \"Item\": {\n                        \"Id\": 106570002,\n                        \"Code\": \"001 6oz med\",\n                        \"Description\": \"6 ounce Medallion \"\n                    },\n                    \"Id\": 240001,\n                    \"Code\": \"6oz\",\n                    \"Description\": \"6 oz.Cut\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"ba1fda91-6366-4e4c-89f6-ec03f70481fe"},{"name":"Retrieve a customer's spec for an item","event":[{"listen":"prerequest","script":{"id":"fe70f5f5-47dd-4994-b3ee-6d79940a424c","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"171cba84-57de-4442-8a17-4fe383febc34","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"c6b9aa90-9ed5-4ae5-908d-cb621d80f0e1","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/specs/:itemId/:specId","description":"<p>List all vendors with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","specs",":itemId",":specId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"},{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Spec ID</p>\n","type":"text/plain"},"type":"any","value":"{{specId}}","key":"specId"}]}},"response":[{"id":"42bd5ffe-a29f-4326-aac7-2ac431ba3270","name":"Retrieve a customer's spec for an item","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/:customerId/specs/:itemId/:specId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","customers",":customerId","specs",":itemId",":specId"],"variable":[{"key":"customerId","value":"60380002","description":"Required. Enter a Customer ID"},{"key":"itemId","value":"106570002","description":"Required. Enter an Item ID"},{"key":"specId","value":"240001","description":"Required. Enter a Spec ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 17:14:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=85A0C9C862D4B421AE9F521A6B79B8D0; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Customers\": [\n        {\n            \"Id\": 60380002,\n            \"Name\": \"Test Auto Number\",\n            \"Code\": \"10000\",\n            \"Specs\": [\n                {\n                    \"Item\": {\n                        \"Id\": 106570002,\n                        \"Code\": \"001 6oz med\",\n                        \"Description\": \"6 ounce Medallion \"\n                    },\n                    \"Id\": 240001,\n                    \"Code\": \"6oz\",\n                    \"Description\": \"6 oz.Cut\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"c6b9aa90-9ed5-4ae5-908d-cb621d80f0e1"},{"name":"List all specs for multiple customers","event":[{"listen":"prerequest","script":{"id":"c38e0ef0-329a-43bc-826a-e2edc18383d8","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"71dd192f-e227-4845-a4d8-04913d785506","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"01d9b62d-4ae5-40ce-9aee-39f723eb920b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/customers/specs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","customers","specs"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtCustomerCode and ltCustomerCode to page through a long list of customers.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtCustomerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return customers where the customer code is less than the value provided</p>\n","type":"text/plain"},"key":"ltCustomerCode","value":""}],"variable":[]}},"response":[],"_postman_id":"01d9b62d-4ae5-40ce-9aee-39f723eb920b"}],"id":"c01e634b-7a0f-464b-92fb-c497b9862378","_postman_id":"c01e634b-7a0f-464b-92fb-c497b9862378","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Hold Reasons","item":[{"name":"List all hold reasons","event":[{"listen":"prerequest","script":{"id":"37b0b277-3cee-4690-91c1-60c81460ac29","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"f0bf5311-867e-4980-ac7c-1666c9dbe071","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"406115d6-56d8-4db4-beb2-2741c2bad8c2","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/hold-reasons","description":"<p>List all vendors with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","hold-reasons"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e0974f03-8d5a-4121-97bf-c11079eb2d82","name":"List all hold reasons","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/hold-reasons"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:25:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=BC4966EFA21EF07C9A98571065CF2FF4; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"HoldReasons\": [\n        {\n            \"Id\": 1,\n            \"Code\": \"DLQ\",\n            \"Description\": \"Very Delinquent\"\n        },\n        {\n            \"Id\": 2,\n            \"Code\": \"DSP\",\n            \"Description\": \"Dispute\"\n        },\n        {\n            \"Id\": 4,\n            \"Code\": \"NA1\",\n            \"Description\": \"NOT APPROVED\"\n        },\n        {\n            \"Id\": 3,\n            \"Code\": \"OCL\",\n            \"Description\": \"Over Credit Limit\"\n        },\n        {\n            \"Id\": 6,\n            \"Code\": \"OT\",\n            \"Description\": \"AR Over Terms\"\n        }\n    ],\n    \"NumResults\": 5\n}"}],"_postman_id":"406115d6-56d8-4db4-beb2-2741c2bad8c2"},{"name":"Retrieve a hold reason","event":[{"listen":"prerequest","script":{"id":"1624f04d-ede2-4829-ade1-84dfaa7c782e","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"024dafbe-6b48-48df-9830-9f7a2418272a","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"be5e443a-c97a-45d2-8c3c-94fd531e5a04","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/hold-reasons/:holdreasonId","description":"<p>List a specific hold reason by the Hold Reason ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","hold-reasons",":holdreasonId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Hold Reason ID</p>\n","type":"text/plain"},"type":"any","value":"{{holdReasonId}}","key":"holdreasonId"}]}},"response":[{"id":"4fe047ee-a1d6-48a8-b7e9-1be41775c4ce","name":"Retrieve a hold reason","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/hold-reasons/:holdreasonId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","hold-reasons",":holdreasonId"],"variable":[{"key":"holdreasonId","value":"1","description":"Required. Enter a Hold Reason ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:26:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=D111C588B2639C685D87367493EB1400; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"HoldReasons\": [\n        {\n            \"Id\": 1,\n            \"Code\": \"DLQ\",\n            \"Description\": \"Very Delinquent\"\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"be5e443a-c97a-45d2-8c3c-94fd531e5a04"}],"id":"8cd426ab-b3e7-4a0a-a999-dcf9911b8b19","_postman_id":"8cd426ab-b3e7-4a0a-a999-dcf9911b8b19","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Inventory Transactions","item":[{"name":"List Inventory Transactions","event":[{"listen":"prerequest","script":{"id":"6d97dd93-9115-42e4-b51c-6348b61c5ec4","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"40eabd36-e553-407b-8fe7-4c82f52b3bf9","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"ab38e604-6acb-4a4a-bb3f-a5f4ee64f6ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/inventory-transactions/?transactionType=PO&status=All","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","inventory-transactions",""],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required. Currently supported values\n<code>PO</code></p>\n","type":"text/plain"},"key":"transactionType","value":"PO"},{"description":{"content":"<p>Optional. Default: <code>All</code> is used if not supplied or invalid option selected.\nValid Options\n<code>All</code>,\n<code>New</code>,\n<code>Partial</code>,\n<code>Received</code>,\n<code>Closed</code></p>\n","type":"text/plain"},"key":"status","value":"All"},{"disabled":true,"description":{"content":"<p>Optional. String to search transactions on.</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[]}},"response":[],"_postman_id":"ab38e604-6acb-4a4a-bb3f-a5f4ee64f6ab"},{"name":"List an individual Inventory Transaction Header","event":[{"listen":"prerequest","script":{"id":"9f0f3926-c1c1-414a-826a-62dd2e06ec97","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"5ee28859-d5ab-428e-a491-6ed74272858b","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"6275a5eb-f8e2-462f-ba2f-2c9a27074e2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/inventory-transactions/:icheadId?transactionType=PO&status=All","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","inventory-transactions",":icheadId"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required. Currently supported values\n<code>PO</code></p>\n","type":"text/plain"},"key":"transactionType","value":"PO"},{"description":{"content":"<p>Optional. Default: <code>All</code> is used if not supplied or invalid option selected.\nValid Options\n<code>All</code>,\n<code>New</code>,\n<code>Partial</code>,\n<code>Received</code>,\n<code>Closed</code></p>\n","type":"text/plain"},"key":"status","value":"All"}],"variable":[{"description":{"content":"<p>Required. Enter an Inventory Transaction ID</p>\n","type":"text/plain"},"type":"any","value":"{{icheadId}}","key":"icheadId"}]}},"response":[],"_postman_id":"6275a5eb-f8e2-462f-ba2f-2c9a27074e2c"},{"name":"List Transaction Lines","event":[{"listen":"prerequest","script":{"id":"3595c917-0981-433c-8337-bc7cab2a1403","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"da98e006-f197-4b59-91c2-19be69258003","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"6fe9eeff-7f8b-41e6-80b8-9a4c1561cb6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/inventory-transactions/:icheadId/lines?transactionType=PO","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","inventory-transactions",":icheadId","lines"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required. Currently supported values\n<code>PO</code></p>\n","type":"text/plain"},"key":"transactionType","value":"PO"}],"variable":[{"description":{"content":"<p>Required. Enter an Inventory Transaction ID</p>\n","type":"text/plain"},"type":"any","value":"{{icheadId}}","key":"icheadId"}]}},"response":[],"_postman_id":"6fe9eeff-7f8b-41e6-80b8-9a4c1561cb6e"},{"name":"Add an Inventory Transaction","event":[{"listen":"prerequest","script":{"id":"313b5163-7511-4850-b9d6-53259e3421a5","exec":["if (pm.environment.id === \"environment/92a41002-53f0-4355-b341-c5fb13829318/65412da9-703c-4975-81bf-63cb40b88197\") {\r","    let vendorId = parseInt(pm.environment.get(\"vendorId\"), 10);\r","    let warehouseId = parseInt(pm.environment.get(\"warehouseId\"), 10);\r","    let itemId = parseInt(pm.environment.get(\"itemId\"), 10);\r","\r","    function formatDate(date) {\r","        return date.toISOString().split('T')[0]; // Format to YYYY-MM-DD\r","    }\r","\r","    let expectedDate = new Date();\r","    expectedDate.setDate(expectedDate.getDate() + 1); // Set to tomorrow\r","\r","    let requestBody = {\r","        \"Vendor\":{\r","            \"Id\": vendorId\r","        },\r","        \"Warehouse\":{\r","            \"Id\": warehouseId\r","        },\r","        \"ExpectedDate\": formatDate(expectedDate),\r","        \"Lines\":[\r","            {\r","                \"bId\": \"bid01\",\r","                \"Item\": {\r","                    \"Id\": itemId\r","                },\r","                \"Quantity\": 2,\r","                \"UOM\": {\r","                    \"Id\": 3\r","                },\r","                \"ExpectedDate\": formatDate(expectedDate)\r","            }\r","        ]\r","    }\r","\r","    pm.request.body.raw = JSON.stringify(requestBody);\r","}"],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"fee3ca11-cbeb-44b4-9b87-1ea93246b1fd","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","\r","    let responseData = pm.response.json();\r","\r","    pm.environment.set(\"newIcheadId\", responseData.Id);\r","});"],"type":"text/javascript","packages":{}}}],"id":"f4788b37-92f5-489b-a147-ae25f8e3df33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Vendor\":{\r\n        \"Id\": 2425490003\r\n    },\r\n    \"Warehouse\":{\r\n        \"Id\": 1\r\n    },\r\n    \"ExpectedDate\":\"2023-02-28\",\r\n    \"Lines\":[\r\n        {\r\n            \"bId\": \"bid01\",\r\n            \"Item\": {\r\n                \"Id\": 2170950003\r\n            },\r\n            \"Quantity\": 2,\r\n            \"UOM\": {\r\n                \"Id\": 3\r\n            },\r\n            \"ExpectedDate\": \"2023-02-27\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/inventory-transactions/?transactionType=PO","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","inventory-transactions",""],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required. Currently supported values\n<code>PO</code></p>\n","type":"text/plain"},"key":"transactionType","value":"PO"}],"variable":[]}},"response":[{"id":"967482a6-f0ce-46a9-9b77-6bbc3e712d27","name":"Add an Inventory Transaction","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Vendor\":{\r\n        \"Id\": 2148100001\r\n    },\r\n    \"Warehouse\":{\r\n        \"Id\": 1\r\n    },\r\n    \"ExpectedDate\":\"2023-02-28\",\r\n    \"Lines\":[\r\n        {\r\n            \"bId\": \"bid01\",\r\n            \"Item\": {\r\n                \"Id\": 2148200001\r\n            },\r\n            \"Quantity\": 2,\r\n            \"UOM\": {\r\n                \"Id\": 3\r\n            },\r\n            \"ExpectedDate\": \"2023-02-27\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/inventory-transactions/?transactionType=PO","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","inventory-transactions",""],"query":[{"key":"transactionType","value":"PO","description":"Required. Currently supported values\n`PO`"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Mon, 27 Feb 2023 22:04:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"JSESSIONID=4EC36133D07E043DC0FCE82582529BF4; Path=/vnsean; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Id\": 2177980003,\n    \"Source\": \"PO\",\n    \"TransactionNumber\": 703,\n    \"Status\": \"New\",\n    \"TransactionDate\": \"2023-02-27\",\n    \"ExpectedDate\": \"2023-02-28\",\n    \"Vendor\": {\n        \"Id\": 2148100001,\n        \"Code\": \"1\",\n        \"Name\": \"1\"\n    },\n    \"Warehouse\": {\n        \"Id\": 1,\n        \"Code\": \"main\",\n        \"Name\": \"Main Warehouse\"\n    },\n    \"Pickup\": {},\n    \"Terms\": {},\n    \"Delivery\": {},\n    \"APInvoiceNo\": \"\",\n    \"Lines\": [\n        {\n            \"Id\": 1,\n            \"LineNo\": 1,\n            \"Item\": {\n                \"Id\": 2148200001,\n                \"Code\": \"00001\",\n                \"Description\": \"Nova Nox! 1/4\\\" Test\"\n            },\n            \"LineDescription\": \"\",\n            \"Quantity\": {\n                \"Amount\": 2,\n                \"UOM\": {\n                    \"Id\": 3,\n                    \"Name\": \"CS\",\n                    \"Description\": \"Case\"\n                }\n            },\n            \"Weight\": {\n                \"Amount\": 24,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"Cost\": {\n                \"Amount\": 7.74,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"ReceivedQuantity\": {\n                \"Amount\": 0,\n                \"UOM\": {\n                    \"Id\": 3,\n                    \"Name\": \"CS\",\n                    \"Description\": \"Case\"\n                }\n            },\n            \"ReceivedWeight\": {\n                \"Amount\": 0,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"Comment\": \"\",\n            \"ExpectedDate\": \"2023-02-27\",\n            \"bId\": \"bid01\"\n        }\n    ]\n}"}],"_postman_id":"f4788b37-92f5-489b-a147-ae25f8e3df33"},{"name":"Update an existing Inventory Transaction","event":[{"listen":"prerequest","script":{"id":"bb9635b8-905c-4b0b-bd3a-3651f0e6e9b1","exec":["if (pm.environment.id === \"environment/92a41002-53f0-4355-b341-c5fb13829318/65412da9-703c-4975-81bf-63cb40b88197\") {\r","\r","    function formatDate(date) {\r","        return date.toISOString().split('T')[0]; // Format to YYYY-MM-DD\r","    }\r","\r","    let expectedDate = new Date();\r","    expectedDate.setDate(expectedDate.getDate() + 2); // Set to tomorrow\r","\r","    let requestBody = {\r","        \"ExpectedDate\": formatDate(expectedDate),\r","    }\r","\r","    pm.request.body.raw = JSON.stringify(requestBody);\r","}"],"type":"text/javascript","packages":{}}}],"id":"79b6eabb-7411-4b68-a479-5d2bff8dc06c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Vendor\":{\r\n        \"Id\": 2425490003\r\n    },\r\n    \"Warehouse\":{\r\n        \"Id\": 1\r\n    },\r\n    \"ExpectedDate\":\"2023-02-28\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/inventory-transactions/:icheadId?transactionType=PO","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","inventory-transactions",":icheadId"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required. Currently supported values\n<code>PO</code></p>\n","type":"text/plain"},"key":"transactionType","value":"PO"}],"variable":[{"description":{"content":"<p>Required. Enter an Inventory Transaction ID</p>\n","type":"text/plain"},"type":"any","value":"{{newIcheadId}}","key":"icheadId"}]}},"response":[],"_postman_id":"79b6eabb-7411-4b68-a479-5d2bff8dc06c"},{"name":"Delete an Inventory Transaction Line","event":[{"listen":"prerequest","script":{"id":"b3760e46-d2f4-46a3-9929-2b53cabe0d10","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"9ca1b001-dac5-4e93-b3a9-00062c2cc5ac","exec":["pm.test(\"Status code is 204\", function () {\r","    pm.response.to.have.status(204);\r","});"],"type":"text/javascript","packages":{}}}],"id":"ee4aad4f-0680-426a-9fb0-0250c7bb1f5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/inventory-transactions/:icheadId/lines/:iclineId?transactionType=PO","description":"<p>This will allow deleting a single line from an inventory transaction.</p>\n<p>No body should be supplied with the request. The transaction ID and the Line ID from the URL will determine which transaction and which line to delete.</p>\n<p>If successful the response will be a blank response with code <code>204 - No Content</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","inventory-transactions",":icheadId","lines",":iclineId"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required. Currently supported values\n<code>PO</code></p>\n","type":"text/plain"},"key":"transactionType","value":"PO"}],"variable":[{"description":{"content":"<p>Required. Enter an Inventory Transaction ID</p>\n","type":"text/plain"},"type":"any","value":"{{newIcheadId}}","key":"icheadId"},{"description":{"content":"<p>Required. Enter an Inventory Transaction Line ID</p>\n","type":"text/plain"},"type":"any","value":"{{newIclineId}}","key":"iclineId"}]}},"response":[],"_postman_id":"ee4aad4f-0680-426a-9fb0-0250c7bb1f5e"},{"name":"Delete an Inventory Transaction","event":[{"listen":"prerequest","script":{"id":"6c326d9c-7175-4c69-aa1b-d5275db1fa13","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"dd2a79c6-ce2b-422f-8174-ad41b5b925ba","exec":["pm.test(\"Status code is 204\", function () {\r","    pm.response.to.have.status(204);\r","});"],"type":"text/javascript","packages":{}}}],"id":"9d986707-93e8-42e4-b1c2-426041fc6ec3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/inventory-transactions/:icheadId/?transactionType=PO","description":"<p>This will allow deleting an entire inventory transaction and all of it's lines.</p>\n<p>No body should be supplied with the request. The transaction ID from the URL will determine which transaction to delete.</p>\n<p>If successful the response will be a blank response with code <code>204 - No Content</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","inventory-transactions",":icheadId",""],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required. Currently supported values\n<code>PO</code></p>\n","type":"text/plain"},"key":"transactionType","value":"PO"}],"variable":[{"description":{"content":"<p>Required. Enter an Inventory Transaction ID</p>\n","type":"text/plain"},"type":"any","value":"{{newIcheadId}}","key":"icheadId"}]}},"response":[],"_postman_id":"9d986707-93e8-42e4-b1c2-426041fc6ec3"}],"id":"fe2d17db-2db4-426f-92a4-ce9326021fa2","_postman_id":"fe2d17db-2db4-426f-92a4-ce9326021fa2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Items","item":[{"name":"List all items","event":[{"listen":"prerequest","script":{"id":"b2781a2d-17ca-418e-bd79-05e4c8cbd47b","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"3e3c32c9-7265-4712-ae8d-efad94113b83","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"a20cc2f5-3a2b-4d4c-80eb-aa812f788d42","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/?maxResults={{itemMaxResults}}","description":"<p>List all items with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",""],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"description":{"content":"<p>Optional. Limit the number of results to number specified.  When not provided or 0 all items will be returned.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":"{{itemMaxResults}}"},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[{"id":"c4703422-cbb0-4138-a1b8-48e4225bdb51","name":"List all items","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/?maxResults=10","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","items",""],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true},{"key":"maxResults","value":"10","description":"Optional. Limit the number of results to number specified.  When not provided or 0 all items will be returned.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items."},{"key":"gtItemCode","value":"","description":"Optional. Only return items where the item code is greater than the value provided","disabled":true},{"key":"ltItemCode","value":"","description":"Optional. Only return items where the item code is less than the value provided","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 18:24:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=C1EF48D84226145EB3079FAD2B373810; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Items\": [\n        {\n            \"Id\": 108210002,\n            \"Code\": \"*90\",\n            \"Description\": \"xxxxx\",\n            \"ExtendedDescription\": \"\",\n            \"PrimaryVendor\": {},\n            \"PrimaryVendorItem\": \"\",\n            \"Brand\": {},\n            \"Item Category\": {},\n            \"OrderGuideCategory\": {},\n            \"PriceBookCategory\": {},\n            \"MobileCategory\": {},\n            \"PackingArea\": {},\n            \"SubItemCategory\": {},\n            \"SecondarySubItemCategory\": {},\n            \"Species\": {},\n            \"Taxable\": false,\n            \"NonFoodTaxable\": false,\n            \"GTIN\": \"\",\n            \"ExpirationDate\": null,\n            \"OrderGuideColor\": {\n                \"Id\": \"\",\n                \"Description\": \"\"\n            },\n            \"SpecialInstructions\": \"\",\n            \"Warehouse\": {},\n            \"DoNotSell\": false,\n            \"ExcludeGlobalBrokenCase\": false,\n            \"CutoffTime\": \"\",\n            \"ExcludeFromPriceList\": false,\n            \"IsAlwaysAvailable\": false,\n            \"IsCatchWeight\": false,\n            \"IsWeightOnly\": false,\n            \"StandardWeight\": {\n                \"Amount\": 1,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"WeightDeviationPercent\": 12.21,\n            \"CaseConversion\": {\n                \"Amount\": 1,\n                \"UOM\": {\n                    \"Id\": 1,\n                    \"Name\": \"EA\",\n                    \"Description\": \"Each\"\n                }\n            },\n            \"HasCatchBox\": false,\n            \"CuttingTicket\": false,\n            \"ShellTicket\": false,\n            \"PickLabel\": true,\n            \"PackSize\": \"\",\n            \"CubicFeet\": 0,\n            \"RetailPrice\": 0,\n            \"StockUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"SellUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"PriceUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"CanBreakEach\": true,\n            \"IsCaseOnly\": false,\n            \"StockStatus\": \"Inventory\",\n            \"Type\": \"Ordinary\",\n            \"TrackCounts\": true,\n            \"DaysOfAvailability\": false,\n            \"DaysAvailable\": 0,\n            \"ABCCode\": \"\",\n            \"ReorderQuantity\": 0,\n            \"BatchSize\": 0,\n            \"ShelfLife\": 0,\n            \"MaxCasesPerPallet\": 0,\n            \"LeadTime\": 0,\n            \"MinimumOrder\": 0,\n            \"ServiceLevel\": 0,\n            \"Costs\": [\n                {\n                    \"Id\": 1,\n                    \"Label\": \"True\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 2,\n                    \"Label\": \"Salesperson\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {\n                        \"PadAmount\": 0,\n                        \"PadType\": \"D\"\n                    }\n                },\n                {\n                    \"Id\": 3,\n                    \"Label\": \"Purchase\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 4,\n                    \"Label\": \"Invoice\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 5,\n                    \"Label\": \"Market\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 6,\n                    \"Label\": \"Average\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 7,\n                    \"Label\": \"Freight\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                }\n            ],\n            \"CostAccount\": {},\n            \"InventoryAccount\": {},\n            \"PurchaseClearingAccount\": {},\n            \"PromoAccount\": {},\n            \"SalesAccount\": {},\n            \"SpoilAccount\": {},\n            \"Comment\": \"\",\n            \"Formula\": {},\n            \"LotControl\": \"Default Value\",\n            \"CreateLotDefault\": \"Previous/Current\",\n            \"PrintLabelPoRec\": false,\n            \"PurchaseOrderLabel\": {},\n            \"OrderEntryLabel\": {},\n            \"WorkOrderLabel\": {},\n            \"LabelDescription\": \"\",\n            \"Ingredients\": \"\",\n            \"MobileDescription\": \"\"\n        },\n        {\n            \"Id\": 95890002,\n            \"Code\": \"0002 FG Catch\",\n            \"Description\": \"Finished Good Catch\",\n            \"ExtendedDescription\": \"\",\n            \"PrimaryVendor\": {\n                \"Id\": 400001,\n                \"Code\": \"AGROPUR\",\n                \"Name\": \"Agriculture Pure, Inc.\"\n            },\n            \"PrimaryVendorItem\": \"\",\n            \"Brand\": {},\n            \"Item Category\": {},\n            \"OrderGuideCategory\": {},\n            \"PriceBookCategory\": {},\n            \"MobileCategory\": {},\n            \"PackingArea\": {},\n            \"SubItemCategory\": {},\n            \"SecondarySubItemCategory\": {},\n            \"Species\": {},\n            \"Taxable\": false,\n            \"NonFoodTaxable\": false,\n            \"GTIN\": \"\",\n            \"ExpirationDate\": null,\n            \"OrderGuideColor\": {\n                \"Id\": \"\",\n                \"Description\": \"\"\n            },\n            \"SpecialInstructions\": \"\",\n            \"Warehouse\": {},\n            \"DoNotSell\": false,\n            \"ExcludeGlobalBrokenCase\": false,\n            \"CutoffTime\": \"\",\n            \"ExcludeFromPriceList\": true,\n            \"IsAlwaysAvailable\": false,\n            \"IsCatchWeight\": true,\n            \"IsWeightOnly\": false,\n            \"StandardWeight\": {\n                \"Amount\": 8,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"WeightDeviationPercent\": 14,\n            \"CaseConversion\": {\n                \"Amount\": 4,\n                \"UOM\": {\n                    \"Id\": 1,\n                    \"Name\": \"EA\",\n                    \"Description\": \"Each\"\n                }\n            },\n            \"HasCatchBox\": false,\n            \"CuttingTicket\": false,\n            \"ShellTicket\": true,\n            \"PickLabel\": true,\n            \"PackSize\": \"\",\n            \"CubicFeet\": 0,\n            \"RetailPrice\": 0,\n            \"StockUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"SellUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"PriceUOM\": {\n                \"Id\": 10,\n                \"Name\": \"LB\",\n                \"Description\": \"Pound\"\n            },\n            \"CanBreakEach\": false,\n            \"IsCaseOnly\": false,\n            \"StockStatus\": \"Inventory\",\n            \"Type\": \"Ordinary\",\n            \"TrackCounts\": true,\n            \"TrackWeight\": true,\n            \"DaysOfAvailability\": false,\n            \"DaysAvailable\": 0,\n            \"ABCCode\": \"\",\n            \"ReorderQuantity\": 0,\n            \"BatchSize\": 0,\n            \"ShelfLife\": 0,\n            \"MaxCasesPerPallet\": 0,\n            \"LeadTime\": 0,\n            \"MinimumOrder\": 0,\n            \"ServiceLevel\": 0,\n            \"Costs\": [\n                {\n                    \"Id\": 1,\n                    \"Label\": \"True\",\n                    \"Amount\": 13.25,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 2,\n                    \"Label\": \"Salesperson\",\n                    \"Amount\": 13.25,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {\n                        \"PadAmount\": 0,\n                        \"PadType\": \"Dollar\"\n                    }\n                },\n                {\n                    \"Id\": 3,\n                    \"Label\": \"Purchase\",\n                    \"Amount\": 13.25,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 4,\n                    \"Label\": \"Invoice\",\n                    \"Amount\": 13.25,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 5,\n                    \"Label\": \"Market\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 6,\n                    \"Label\": \"Average\",\n                    \"Amount\": 13.25,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 7,\n                    \"Label\": \"Freight\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                }\n            ],\n            \"CostAccount\": {},\n            \"InventoryAccount\": {},\n            \"PurchaseClearingAccount\": {},\n            \"PromoAccount\": {},\n            \"SalesAccount\": {},\n            \"SpoilAccount\": {},\n            \"Comment\": \"\",\n            \"Formula\": {\n                \"Id\": 220002,\n                \"Code\": \"Casey\",\n                \"Description\": \"Casey\"\n            },\n            \"LotControl\": \"No\",\n            \"CreateLotDefault\": \"Previous/Current\",\n            \"PrintLabelPoRec\": false,\n            \"PurchaseOrderLabel\": {\n                \"Id\": 1,\n                \"Code\": \"TESTPO\",\n                \"Description\": \"TEST PO LABEL\"\n            },\n            \"OrderEntryLabel\": {},\n            \"WorkOrderLabel\": {},\n            \"LabelDescription\": \"\",\n            \"Ingredients\": \"\",\n            \"MobileDescription\": \"THis is a really bi description o the itehsdjsdlsdkklsd\\nskldjskdjskldj\\ns;dskdklsdf\"\n        },\n        {\n            \"Id\": 95880002,\n            \"Code\": \"0002 FG Std\",\n            \"Description\": \"Finished Good Standard\",\n            \"ExtendedDescription\": \"12356\",\n            \"PrimaryVendor\": {},\n            \"PrimaryVendorItem\": \"\",\n            \"Brand\": {},\n            \"Item Category\": {},\n            \"OrderGuideCategory\": {},\n            \"PriceBookCategory\": {},\n            \"MobileCategory\": {},\n            \"PackingArea\": {},\n            \"SubItemCategory\": {},\n            \"SecondarySubItemCategory\": {},\n            \"Species\": {},\n            \"Taxable\": false,\n            \"NonFoodTaxable\": false,\n            \"GTIN\": \"\",\n            \"ExpirationDate\": \"2020-02-28\",\n            \"OrderGuideColor\": {\n                \"Id\": \"\",\n                \"Description\": \"\"\n            },\n            \"SpecialInstructions\": \"\",\n            \"Warehouse\": {},\n            \"DoNotSell\": false,\n            \"ExcludeGlobalBrokenCase\": false,\n            \"CutoffTime\": \"\",\n            \"ExcludeFromPriceList\": false,\n            \"IsAlwaysAvailable\": false,\n            \"IsCatchWeight\": false,\n            \"IsWeightOnly\": false,\n            \"StandardWeight\": {\n                \"Amount\": 8,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"WeightDeviationPercent\": 0,\n            \"CaseConversion\": {\n                \"Amount\": 4,\n                \"UOM\": {\n                    \"Id\": 1,\n                    \"Name\": \"EA\",\n                    \"Description\": \"Each\"\n                }\n            },\n            \"HasCatchBox\": false,\n            \"CuttingTicket\": false,\n            \"ShellTicket\": true,\n            \"PickLabel\": true,\n            \"PackSize\": \"\",\n            \"CubicFeet\": 0,\n            \"RetailPrice\": 0,\n            \"StockUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"SellUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"PriceUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"CanBreakEach\": false,\n            \"IsCaseOnly\": false,\n            \"StockStatus\": \"Inventory\",\n            \"Type\": \"Ordinary\",\n            \"TrackCounts\": true,\n            \"DaysOfAvailability\": false,\n            \"DaysAvailable\": 0,\n            \"ABCCode\": \"\",\n            \"ReorderQuantity\": 0,\n            \"BatchSize\": 0,\n            \"ShelfLife\": 0,\n            \"MaxCasesPerPallet\": 0,\n            \"LeadTime\": 0,\n            \"MinimumOrder\": 0,\n            \"ServiceLevel\": 0,\n            \"Costs\": [\n                {\n                    \"Id\": 1,\n                    \"Label\": \"True\",\n                    \"Amount\": 31.01,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 2,\n                    \"Label\": \"Salesperson\",\n                    \"Amount\": 31.01,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {\n                        \"PadAmount\": 0,\n                        \"PadType\": \"D\"\n                    }\n                },\n                {\n                    \"Id\": 3,\n                    \"Label\": \"Purchase\",\n                    \"Amount\": 31.01,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 4,\n                    \"Label\": \"Invoice\",\n                    \"Amount\": 31.01,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 5,\n                    \"Label\": \"Market\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 6,\n                    \"Label\": \"Average\",\n                    \"Amount\": 30.25,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 7,\n                    \"Label\": \"Freight\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                }\n            ],\n            \"CostAccount\": {},\n            \"InventoryAccount\": {},\n            \"PurchaseClearingAccount\": {},\n            \"PromoAccount\": {},\n            \"SalesAccount\": {},\n            \"SpoilAccount\": {},\n            \"Comment\": \"\",\n            \"Formula\": {},\n            \"LotControl\": \"Yes\",\n            \"CreateLotDefault\": \"Previous/Current\",\n            \"PrintLabelPoRec\": false,\n            \"PurchaseOrderLabel\": {},\n            \"OrderEntryLabel\": {},\n            \"WorkOrderLabel\": {},\n            \"LabelDescription\": \"\",\n            \"Ingredients\": \"\",\n            \"MobileDescription\": \"\"\n        },\n        {\n            \"Id\": 95870002,\n            \"Code\": \"0002 Ing Catch\",\n            \"Description\": \"Ingredient Catch\",\n            \"ExtendedDescription\": \"\",\n            \"PrimaryVendor\": {},\n            \"PrimaryVendorItem\": \"\",\n            \"Brand\": {},\n            \"Item Category\": {},\n            \"OrderGuideCategory\": {},\n            \"PriceBookCategory\": {},\n            \"MobileCategory\": {},\n            \"PackingArea\": {},\n            \"SubItemCategory\": {},\n            \"SecondarySubItemCategory\": {},\n            \"Species\": {},\n            \"Taxable\": false,\n            \"NonFoodTaxable\": false,\n            \"GTIN\": \"\",\n            \"ExpirationDate\": null,\n            \"OrderGuideColor\": {\n                \"Id\": \"\",\n                \"Description\": \"\"\n            },\n            \"SpecialInstructions\": \"\",\n            \"Warehouse\": {},\n            \"DoNotSell\": false,\n            \"ExcludeGlobalBrokenCase\": false,\n            \"CutoffTime\": \"\",\n            \"ExcludeFromPriceList\": false,\n            \"IsAlwaysAvailable\": false,\n            \"IsCatchWeight\": true,\n            \"IsWeightOnly\": false,\n            \"StandardWeight\": {\n                \"Amount\": 10,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"WeightDeviationPercent\": 0,\n            \"CaseConversion\": {\n                \"Amount\": 4,\n                \"UOM\": {\n                    \"Id\": 1,\n                    \"Name\": \"EA\",\n                    \"Description\": \"Each\"\n                }\n            },\n            \"HasCatchBox\": false,\n            \"CuttingTicket\": false,\n            \"ShellTicket\": false,\n            \"PickLabel\": true,\n            \"PackSize\": \"\",\n            \"CubicFeet\": 0,\n            \"RetailPrice\": 0,\n            \"StockUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"SellUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"PriceUOM\": {\n                \"Id\": 10,\n                \"Name\": \"LB\",\n                \"Description\": \"Pound\"\n            },\n            \"CanBreakEach\": false,\n            \"IsCaseOnly\": false,\n            \"StockStatus\": \"Don't Reorder\",\n            \"Type\": \"Ordinary\",\n            \"TrackCounts\": true,\n            \"TrackWeight\": true,\n            \"DaysOfAvailability\": false,\n            \"DaysAvailable\": 0,\n            \"ABCCode\": \"\",\n            \"ReorderQuantity\": 0,\n            \"BatchSize\": 0,\n            \"ShelfLife\": 0,\n            \"MaxCasesPerPallet\": 0,\n            \"LeadTime\": 0,\n            \"MinimumOrder\": 0,\n            \"ServiceLevel\": 0,\n            \"Costs\": [\n                {\n                    \"Id\": 1,\n                    \"Label\": \"True\",\n                    \"Amount\": 1,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 2,\n                    \"Label\": \"Salesperson\",\n                    \"Amount\": 1,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {\n                        \"PadAmount\": 0,\n                        \"PadType\": \"Dollar\"\n                    }\n                },\n                {\n                    \"Id\": 3,\n                    \"Label\": \"Purchase\",\n                    \"Amount\": 1,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 4,\n                    \"Label\": \"Invoice\",\n                    \"Amount\": 1,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 5,\n                    \"Label\": \"Market\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 6,\n                    \"Label\": \"Average\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 7,\n                    \"Label\": \"Freight\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                }\n            ],\n            \"CostAccount\": {},\n            \"InventoryAccount\": {},\n            \"PurchaseClearingAccount\": {},\n            \"PromoAccount\": {},\n            \"SalesAccount\": {},\n            \"SpoilAccount\": {},\n            \"Comment\": \"\",\n            \"Formula\": {},\n            \"LotControl\": \"Yes\",\n            \"CreateLotDefault\": \"Previous/Current\",\n            \"PrintLabelPoRec\": false,\n            \"PurchaseOrderLabel\": {},\n            \"OrderEntryLabel\": {},\n            \"WorkOrderLabel\": {},\n            \"LabelDescription\": \"\",\n            \"Ingredients\": \"\",\n            \"MobileDescription\": \"\"\n        },\n        {\n            \"Id\": 95860002,\n            \"Code\": \"0002 Ing Std\",\n            \"Description\": \"Ingredient Standard Weight\",\n            \"ExtendedDescription\": \"\",\n            \"PrimaryVendor\": {},\n            \"PrimaryVendorItem\": \"\",\n            \"Brand\": {},\n            \"Item Category\": {},\n            \"OrderGuideCategory\": {},\n            \"PriceBookCategory\": {},\n            \"MobileCategory\": {},\n            \"PackingArea\": {},\n            \"SubItemCategory\": {},\n            \"SecondarySubItemCategory\": {},\n            \"Species\": {},\n            \"Taxable\": false,\n            \"NonFoodTaxable\": false,\n            \"GTIN\": \"\",\n            \"ExpirationDate\": null,\n            \"OrderGuideColor\": {\n                \"Id\": \"\",\n                \"Description\": \"\"\n            },\n            \"SpecialInstructions\": \"\",\n            \"Warehouse\": {},\n            \"DoNotSell\": false,\n            \"ExcludeGlobalBrokenCase\": false,\n            \"CutoffTime\": \"\",\n            \"ExcludeFromPriceList\": false,\n            \"IsAlwaysAvailable\": false,\n            \"IsCatchWeight\": false,\n            \"IsWeightOnly\": false,\n            \"StandardWeight\": {\n                \"Amount\": 10,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"WeightDeviationPercent\": 0,\n            \"CaseConversion\": {\n                \"Amount\": 4,\n                \"UOM\": {\n                    \"Id\": 1,\n                    \"Name\": \"EA\",\n                    \"Description\": \"Each\"\n                }\n            },\n            \"HasCatchBox\": false,\n            \"CuttingTicket\": false,\n            \"ShellTicket\": false,\n            \"PickLabel\": true,\n            \"PackSize\": \"\",\n            \"CubicFeet\": 0,\n            \"RetailPrice\": 0,\n            \"StockUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"SellUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"PriceUOM\": {\n                \"Id\": 10,\n                \"Name\": \"LB\",\n                \"Description\": \"Pound\"\n            },\n            \"CanBreakEach\": false,\n            \"IsCaseOnly\": false,\n            \"StockStatus\": \"Inventory\",\n            \"Type\": \"Ordinary\",\n            \"TrackCounts\": true,\n            \"DaysOfAvailability\": false,\n            \"DaysAvailable\": 0,\n            \"ABCCode\": \"\",\n            \"ReorderQuantity\": 0,\n            \"BatchSize\": 0,\n            \"ShelfLife\": 0,\n            \"MaxCasesPerPallet\": 0,\n            \"LeadTime\": 0,\n            \"MinimumOrder\": 0,\n            \"ServiceLevel\": 0,\n            \"Costs\": [\n                {\n                    \"Id\": 1,\n                    \"Label\": \"True\",\n                    \"Amount\": 5.5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 2,\n                    \"Label\": \"Salesperson\",\n                    \"Amount\": 5.5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {\n                        \"PadAmount\": 0,\n                        \"PadType\": \"Dollar\"\n                    }\n                },\n                {\n                    \"Id\": 3,\n                    \"Label\": \"Purchase\",\n                    \"Amount\": 5.5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 4,\n                    \"Label\": \"Invoice\",\n                    \"Amount\": 5.5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 5,\n                    \"Label\": \"Market\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 6,\n                    \"Label\": \"Average\",\n                    \"Amount\": 5.5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 7,\n                    \"Label\": \"Freight\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                }\n            ],\n            \"CostAccount\": {},\n            \"InventoryAccount\": {},\n            \"PurchaseClearingAccount\": {},\n            \"PromoAccount\": {},\n            \"SalesAccount\": {},\n            \"SpoilAccount\": {},\n            \"Comment\": \"\",\n            \"Formula\": {},\n            \"LotControl\": \"Yes\",\n            \"CreateLotDefault\": \"Previous/Current\",\n            \"PrintLabelPoRec\": false,\n            \"PurchaseOrderLabel\": {},\n            \"OrderEntryLabel\": {},\n            \"WorkOrderLabel\": {},\n            \"LabelDescription\": \"\",\n            \"Ingredients\": \"\",\n            \"MobileDescription\": \"\"\n        },\n        {\n            \"Id\": 95900002,\n            \"Code\": \"0003\",\n            \"Description\": \"0003\",\n            \"ExtendedDescription\": \"\",\n            \"PrimaryVendor\": {\n                \"Id\": 148050002,\n                \"Code\": \"004\",\n                \"Name\": \"CASTELLA\"\n            },\n            \"PrimaryVendorItem\": \"\",\n            \"Brand\": {},\n            \"Item Category\": {},\n            \"OrderGuideCategory\": {},\n            \"PriceBookCategory\": {},\n            \"MobileCategory\": {},\n            \"PackingArea\": {},\n            \"SubItemCategory\": {},\n            \"SecondarySubItemCategory\": {},\n            \"Species\": {},\n            \"Taxable\": false,\n            \"NonFoodTaxable\": false,\n            \"GTIN\": \"\",\n            \"ExpirationDate\": null,\n            \"OrderGuideColor\": {\n                \"Id\": \"\",\n                \"Description\": \"\"\n            },\n            \"SpecialInstructions\": \"\",\n            \"Warehouse\": {},\n            \"DoNotSell\": false,\n            \"ExcludeGlobalBrokenCase\": false,\n            \"CutoffTime\": \"\",\n            \"ExcludeFromPriceList\": false,\n            \"IsAlwaysAvailable\": false,\n            \"IsCatchWeight\": true,\n            \"IsWeightOnly\": false,\n            \"StandardWeight\": {\n                \"Amount\": 5,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"WeightDeviationPercent\": 0,\n            \"CaseConversion\": {\n                \"Amount\": 4,\n                \"UOM\": {\n                    \"Id\": 1,\n                    \"Name\": \"EA\",\n                    \"Description\": \"Each\"\n                }\n            },\n            \"HasCatchBox\": false,\n            \"CuttingTicket\": false,\n            \"ShellTicket\": false,\n            \"PickLabel\": true,\n            \"PackSize\": \"\",\n            \"CubicFeet\": 0,\n            \"RetailPrice\": 0,\n            \"StockUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"SellUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"PriceUOM\": {\n                \"Id\": 10,\n                \"Name\": \"LB\",\n                \"Description\": \"Pound\"\n            },\n            \"CanBreakEach\": false,\n            \"IsCaseOnly\": false,\n            \"StockStatus\": \"Inventory\",\n            \"Type\": \"Ordinary\",\n            \"TrackCounts\": true,\n            \"TrackWeight\": true,\n            \"DaysOfAvailability\": false,\n            \"DaysAvailable\": 0,\n            \"ABCCode\": \"\",\n            \"ReorderQuantity\": 0,\n            \"BatchSize\": 0,\n            \"ShelfLife\": 0,\n            \"MaxCasesPerPallet\": 0,\n            \"LeadTime\": 0,\n            \"MinimumOrder\": 0,\n            \"ServiceLevel\": 0,\n            \"Costs\": [\n                {\n                    \"Id\": 1,\n                    \"Label\": \"True\",\n                    \"Amount\": 3,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 2,\n                    \"Label\": \"Salesperson\",\n                    \"Amount\": 3,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {\n                        \"PadAmount\": 0,\n                        \"PadType\": \"D\"\n                    }\n                },\n                {\n                    \"Id\": 3,\n                    \"Label\": \"Purchase\",\n                    \"Amount\": 3,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 4,\n                    \"Label\": \"Invoice\",\n                    \"Amount\": 3,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 5,\n                    \"Label\": \"Market\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 6,\n                    \"Label\": \"Average\",\n                    \"Amount\": 2.5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 7,\n                    \"Label\": \"Freight\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                }\n            ],\n            \"CostAccount\": {},\n            \"InventoryAccount\": {},\n            \"PurchaseClearingAccount\": {},\n            \"PromoAccount\": {},\n            \"SalesAccount\": {},\n            \"SpoilAccount\": {},\n            \"Comment\": \"\",\n            \"Formula\": {},\n            \"LotControl\": \"Default Value\",\n            \"CreateLotDefault\": \"Previous/Current\",\n            \"PrintLabelPoRec\": false,\n            \"PurchaseOrderLabel\": {},\n            \"OrderEntryLabel\": {},\n            \"WorkOrderLabel\": {},\n            \"LabelDescription\": \"\",\n            \"Ingredients\": \"\",\n            \"MobileDescription\": \"\"\n        },\n        {\n            \"Id\": 95540002,\n            \"Code\": \"001 3oz med\",\n            \"Description\": \"3 ounce Medallion 12 to 15 Lb Grass Fed Prime > Special Order Only \",\n            \"ExtendedDescription\": \"USA\",\n            \"PrimaryVendor\": {\n                \"Id\": 420001,\n                \"Code\": \"ALL\",\n                \"Name\": \"ALL HARVEST\"\n            },\n            \"PrimaryVendorItem\": \"123?MM\",\n            \"Brand\": {},\n            \"Item Category\": {\n                \"Id\": 3,\n                \"Code\": \"BEEF\",\n                \"Description\": \"BEEF\"\n            },\n            \"OrderGuideCategory\": {\n                \"Id\": 9,\n                \"Code\": \"BEEF3\",\n                \"Description\": \"BEEF PRODUCTS 4\"\n            },\n            \"PriceBookCategory\": {},\n            \"MobileCategory\": {},\n            \"PackingArea\": {},\n            \"SubItemCategory\": {},\n            \"SecondarySubItemCategory\": {},\n            \"Species\": {},\n            \"Taxable\": false,\n            \"NonFoodTaxable\": false,\n            \"GTIN\": \"\",\n            \"ExpirationDate\": null,\n            \"OrderGuideColor\": {\n                \"Id\": \"Special 1\",\n                \"Description\": \"Special 1 - Display item in light gold in OE\"\n            },\n            \"SpecialInstructions\": \"\",\n            \"Warehouse\": {},\n            \"DoNotSell\": false,\n            \"ExcludeGlobalBrokenCase\": false,\n            \"CutoffTime\": \"00:00\",\n            \"ExcludeFromPriceList\": true,\n            \"IsAlwaysAvailable\": false,\n            \"IsCatchWeight\": false,\n            \"IsWeightOnly\": false,\n            \"StandardWeight\": {\n                \"Amount\": 5.5,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"WeightDeviationPercent\": 20,\n            \"CaseConversion\": {\n                \"Amount\": 3,\n                \"UOM\": {\n                    \"Id\": 1,\n                    \"Name\": \"EA\",\n                    \"Description\": \"Each\"\n                }\n            },\n            \"HasCatchBox\": false,\n            \"CuttingTicket\": true,\n            \"ShellTicket\": true,\n            \"PickLabel\": true,\n            \"PackSize\": \"\",\n            \"CubicFeet\": 0,\n            \"RetailPrice\": 0,\n            \"StockUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"SellUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"PriceUOM\": {\n                \"Id\": 10,\n                \"Name\": \"LB\",\n                \"Description\": \"Pound\"\n            },\n            \"CanBreakEach\": false,\n            \"IsCaseOnly\": false,\n            \"StockStatus\": \"Inventory\",\n            \"Type\": \"Ordinary\",\n            \"TrackCounts\": true,\n            \"DaysOfAvailability\": false,\n            \"DaysAvailable\": 0,\n            \"ABCCode\": \"\",\n            \"ReorderQuantity\": 0,\n            \"BatchSize\": 0,\n            \"ShelfLife\": 0,\n            \"MaxCasesPerPallet\": 0,\n            \"LeadTime\": 0,\n            \"MinimumOrder\": 0,\n            \"ServiceLevel\": 0,\n            \"Costs\": [\n                {\n                    \"Id\": 1,\n                    \"Label\": \"True\",\n                    \"Amount\": 6.4,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 2,\n                    \"Label\": \"Salesperson\",\n                    \"Amount\": 7.4,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {\n                        \"PadAmount\": 1,\n                        \"PadType\": \"Dollar\"\n                    }\n                },\n                {\n                    \"Id\": 3,\n                    \"Label\": \"Purchase\",\n                    \"Amount\": 6.36,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 4,\n                    \"Label\": \"Invoice\",\n                    \"Amount\": 6.36,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 5,\n                    \"Label\": \"Market\",\n                    \"Amount\": 9.15,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 6,\n                    \"Label\": \"Average\",\n                    \"Amount\": 5.0487,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 7,\n                    \"Label\": \"Freight\",\n                    \"Amount\": 0.04,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                }\n            ],\n            \"CostAccount\": {},\n            \"InventoryAccount\": {},\n            \"PurchaseClearingAccount\": {},\n            \"PromoAccount\": {},\n            \"SalesAccount\": {},\n            \"SpoilAccount\": {},\n            \"Comment\": \"\",\n            \"Formula\": {\n                \"Id\": 90001,\n                \"Code\": \"20P\",\n                \"Description\": \"20 Percent (Testing Formula)\"\n            },\n            \"LotControl\": \"Yes\",\n            \"CreateLotDefault\": \"Previous/Current\",\n            \"PrintLabelPoRec\": false,\n            \"PurchaseOrderLabel\": {},\n            \"OrderEntryLabel\": {},\n            \"WorkOrderLabel\": {},\n            \"LabelDescription\": \"\",\n            \"Ingredients\": \"\",\n            \"MobileDescription\": \"\"\n        },\n        {\n            \"Id\": 106570002,\n            \"Code\": \"001 6oz med\",\n            \"Description\": \"6 ounce Medallion \",\n            \"ExtendedDescription\": \"usa\",\n            \"PrimaryVendor\": {},\n            \"PrimaryVendorItem\": \"\",\n            \"Brand\": {},\n            \"Item Category\": {\n                \"Id\": 3,\n                \"Code\": \"BEEF\",\n                \"Description\": \"BEEF\"\n            },\n            \"OrderGuideCategory\": {\n                \"Id\": 9,\n                \"Code\": \"BEEF3\",\n                \"Description\": \"BEEF PRODUCTS 4\"\n            },\n            \"PriceBookCategory\": {},\n            \"MobileCategory\": {},\n            \"PackingArea\": {},\n            \"SubItemCategory\": {},\n            \"SecondarySubItemCategory\": {},\n            \"Species\": {},\n            \"Taxable\": false,\n            \"NonFoodTaxable\": false,\n            \"GTIN\": \"\",\n            \"ExpirationDate\": null,\n            \"OrderGuideColor\": {\n                \"Id\": \"Special 1\",\n                \"Description\": \"Special 1 - Display item in light gold in OE\"\n            },\n            \"SpecialInstructions\": \"\",\n            \"Warehouse\": {},\n            \"DoNotSell\": false,\n            \"ExcludeGlobalBrokenCase\": false,\n            \"CutoffTime\": \"\",\n            \"ExcludeFromPriceList\": true,\n            \"IsAlwaysAvailable\": false,\n            \"IsCatchWeight\": true,\n            \"IsWeightOnly\": false,\n            \"StandardWeight\": {\n                \"Amount\": 0.375,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"WeightDeviationPercent\": 0,\n            \"CaseConversion\": {\n                \"Amount\": 25,\n                \"UOM\": {\n                    \"Id\": 1,\n                    \"Name\": \"EA\",\n                    \"Description\": \"Each\"\n                }\n            },\n            \"HasCatchBox\": false,\n            \"CuttingTicket\": true,\n            \"ShellTicket\": false,\n            \"PickLabel\": true,\n            \"PackSize\": \"\",\n            \"CubicFeet\": 0,\n            \"RetailPrice\": 0,\n            \"StockUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"SellUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"PriceUOM\": {\n                \"Id\": 10,\n                \"Name\": \"LB\",\n                \"Description\": \"Pound\"\n            },\n            \"CanBreakEach\": false,\n            \"IsCaseOnly\": false,\n            \"StockStatus\": \"Inventory\",\n            \"Type\": \"Ordinary\",\n            \"TrackCounts\": true,\n            \"TrackWeight\": true,\n            \"DaysOfAvailability\": false,\n            \"DaysAvailable\": 0,\n            \"ABCCode\": \"\",\n            \"ReorderQuantity\": 0,\n            \"BatchSize\": 0,\n            \"ShelfLife\": 5,\n            \"MaxCasesPerPallet\": 0,\n            \"LeadTime\": 0,\n            \"MinimumOrder\": 0,\n            \"ServiceLevel\": 0,\n            \"Costs\": [\n                {\n                    \"Id\": 1,\n                    \"Label\": \"True\",\n                    \"Amount\": 15.9027,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 2,\n                    \"Label\": \"Salesperson\",\n                    \"Amount\": 10.7647,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {\n                        \"PadAmount\": 15,\n                        \"PadType\": \"Margin\"\n                    }\n                },\n                {\n                    \"Id\": 3,\n                    \"Label\": \"Purchase\",\n                    \"Amount\": 15.87,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 4,\n                    \"Label\": \"Invoice\",\n                    \"Amount\": 15.87,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 5,\n                    \"Label\": \"Market\",\n                    \"Amount\": 9.15,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 6,\n                    \"Label\": \"Average\",\n                    \"Amount\": 13.4316,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 7,\n                    \"Label\": \"Freight\",\n                    \"Amount\": 0.0327,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                }\n            ],\n            \"CostAccount\": {},\n            \"InventoryAccount\": {},\n            \"PurchaseClearingAccount\": {},\n            \"PromoAccount\": {},\n            \"SalesAccount\": {},\n            \"SpoilAccount\": {},\n            \"Comment\": \"\",\n            \"Formula\": {},\n            \"LotControl\": \"No\",\n            \"CreateLotDefault\": \"Previous/Current\",\n            \"PrintLabelPoRec\": false,\n            \"PurchaseOrderLabel\": {},\n            \"OrderEntryLabel\": {},\n            \"WorkOrderLabel\": {},\n            \"LabelDescription\": \"3 OZ MEDALLIONS \",\n            \"Ingredients\": \"\",\n            \"MobileDescription\": \"\"\n        },\n        {\n            \"Id\": 95530002,\n            \"Code\": \"001 8oz steak\",\n            \"Description\": \"8 oz. Boneless Ribeye Prime\",\n            \"ExtendedDescription\": \"\",\n            \"PrimaryVendor\": {},\n            \"PrimaryVendorItem\": \"\",\n            \"Brand\": {\n                \"Id\": 69,\n                \"Code\": \"CAST\",\n                \"Description\": \"CASTELLA\"\n            },\n            \"Item Category\": {\n                \"Id\": 3,\n                \"Code\": \"BEEF\",\n                \"Description\": \"BEEF\"\n            },\n            \"OrderGuideCategory\": {\n                \"Id\": 9,\n                \"Code\": \"BEEF3\",\n                \"Description\": \"BEEF PRODUCTS 4\"\n            },\n            \"PriceBookCategory\": {},\n            \"MobileCategory\": {},\n            \"PackingArea\": {},\n            \"SubItemCategory\": {},\n            \"SecondarySubItemCategory\": {},\n            \"Species\": {},\n            \"Taxable\": true,\n            \"NonFoodTaxable\": false,\n            \"GTIN\": \"\",\n            \"ExpirationDate\": null,\n            \"OrderGuideColor\": {\n                \"Id\": \"Special 1\",\n                \"Description\": \"Special 1 - Display item in light gold in OE\"\n            },\n            \"SpecialInstructions\": \"Make sure to order 4 cases before ordering Choice\",\n            \"Warehouse\": {},\n            \"DoNotSell\": false,\n            \"ExcludeGlobalBrokenCase\": false,\n            \"CutoffTime\": \"\",\n            \"ExcludeFromPriceList\": false,\n            \"IsAlwaysAvailable\": false,\n            \"IsCatchWeight\": true,\n            \"IsWeightOnly\": false,\n            \"StandardWeight\": {\n                \"Amount\": 8,\n                \"UOM\": {\n                    \"Id\": 12,\n                    \"Name\": \"OZ\",\n                    \"Description\": \"Ounces\"\n                }\n            },\n            \"WeightDeviationPercent\": 55,\n            \"CaseConversion\": {\n                \"Amount\": 20,\n                \"UOM\": {\n                    \"Id\": 1,\n                    \"Name\": \"EA\",\n                    \"Description\": \"Each\"\n                }\n            },\n            \"HasCatchBox\": false,\n            \"CuttingTicket\": true,\n            \"ShellTicket\": false,\n            \"PickLabel\": true,\n            \"PackSize\": \"20/8OZ\",\n            \"CubicFeet\": 0,\n            \"RetailPrice\": 0,\n            \"StockUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"SellUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"PriceUOM\": {\n                \"Id\": 10,\n                \"Name\": \"LB\",\n                \"Description\": \"Pound\"\n            },\n            \"CanBreakEach\": true,\n            \"IsCaseOnly\": false,\n            \"StockStatus\": \"Inventory\",\n            \"Type\": \"Ordinary\",\n            \"TrackCounts\": true,\n            \"TrackWeight\": true,\n            \"DaysOfAvailability\": false,\n            \"DaysAvailable\": 0,\n            \"ABCCode\": \"a\",\n            \"ReorderQuantity\": 0,\n            \"BatchSize\": 0,\n            \"ShelfLife\": 0,\n            \"MaxCasesPerPallet\": 0,\n            \"LeadTime\": 0,\n            \"MinimumOrder\": 0,\n            \"ServiceLevel\": 0,\n            \"Costs\": [\n                {\n                    \"Id\": 1,\n                    \"Label\": \"True\",\n                    \"Amount\": 0.05,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 2,\n                    \"Label\": \"Salesperson\",\n                    \"Amount\": 6.5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {\n                        \"PadAmount\": 0,\n                        \"PadType\": \"Dollar\"\n                    }\n                },\n                {\n                    \"Id\": 4,\n                    \"Label\": \"Invoice\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 5,\n                    \"Label\": \"Market\",\n                    \"Amount\": 6.5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 6,\n                    \"Label\": \"Average\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 7,\n                    \"Label\": \"Freight\",\n                    \"Amount\": 0.05,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                }\n            ],\n            \"CostAccount\": {},\n            \"InventoryAccount\": {},\n            \"PurchaseClearingAccount\": {},\n            \"PromoAccount\": {},\n            \"SalesAccount\": {},\n            \"SpoilAccount\": {},\n            \"Comment\": \"\",\n            \"Formula\": {\n                \"Id\": 90001,\n                \"Code\": \"20P\",\n                \"Description\": \"20 Percent (Testing Formula)\"\n            },\n            \"LotControl\": \"Yes\",\n            \"CreateLotDefault\": \"Previous/Current\",\n            \"PrintLabelPoRec\": false,\n            \"PurchaseOrderLabel\": {},\n            \"OrderEntryLabel\": {\n                \"Id\": 1,\n                \"Code\": \"TESTPO\",\n                \"Description\": \"TEST PO LABEL\"\n            },\n            \"WorkOrderLabel\": {},\n            \"LabelDescription\": \"\",\n            \"Ingredients\": \"\",\n            \"MobileDescription\": \"\"\n        },\n        {\n            \"Id\": 106490002,\n            \"Code\": \"001 8oz steak C\",\n            \"Description\": \"8 oz. Boneless Ribeye Choice\",\n            \"ExtendedDescription\": \"\",\n            \"PrimaryVendor\": {},\n            \"PrimaryVendorItem\": \"\",\n            \"Brand\": {\n                \"Id\": 69,\n                \"Code\": \"CAST\",\n                \"Description\": \"CASTELLA\"\n            },\n            \"Item Category\": {\n                \"Id\": 75,\n                \"Code\": \"RIBEYESTK\",\n                \"Description\": \"RIBEYE STEAK\"\n            },\n            \"OrderGuideCategory\": {\n                \"Id\": 9,\n                \"Code\": \"BEEF3\",\n                \"Description\": \"BEEF PRODUCTS 4\"\n            },\n            \"PriceBookCategory\": {},\n            \"MobileCategory\": {},\n            \"PackingArea\": {},\n            \"SubItemCategory\": {},\n            \"SecondarySubItemCategory\": {},\n            \"Species\": {},\n            \"Taxable\": true,\n            \"NonFoodTaxable\": false,\n            \"GTIN\": \"\",\n            \"ExpirationDate\": \"2022-09-30\",\n            \"OrderGuideColor\": {\n                \"Id\": \"Special 1\",\n                \"Description\": \"Special 1 - Display item in light gold in OE\"\n            },\n            \"SpecialInstructions\": \"\",\n            \"Warehouse\": {},\n            \"DoNotSell\": false,\n            \"ExcludeGlobalBrokenCase\": false,\n            \"CutoffTime\": \"\",\n            \"ExcludeFromPriceList\": false,\n            \"IsAlwaysAvailable\": false,\n            \"IsCatchWeight\": true,\n            \"IsWeightOnly\": false,\n            \"StandardWeight\": {\n                \"Amount\": 8,\n                \"UOM\": {\n                    \"Id\": 12,\n                    \"Name\": \"OZ\",\n                    \"Description\": \"Ounces\"\n                }\n            },\n            \"WeightDeviationPercent\": 15,\n            \"CaseConversion\": {\n                \"Amount\": 20,\n                \"UOM\": {\n                    \"Id\": 1,\n                    \"Name\": \"EA\",\n                    \"Description\": \"Each\"\n                }\n            },\n            \"HasCatchBox\": false,\n            \"CuttingTicket\": true,\n            \"ShellTicket\": false,\n            \"PickLabel\": true,\n            \"PackSize\": \"20/8OZ\",\n            \"CubicFeet\": 0,\n            \"RetailPrice\": 0,\n            \"StockUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"SellUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"PriceUOM\": {\n                \"Id\": 10,\n                \"Name\": \"LB\",\n                \"Description\": \"Pound\"\n            },\n            \"CanBreakEach\": true,\n            \"IsCaseOnly\": false,\n            \"StockStatus\": \"Inventory\",\n            \"Type\": \"Ordinary\",\n            \"TrackCounts\": true,\n            \"TrackWeight\": true,\n            \"DaysOfAvailability\": false,\n            \"DaysAvailable\": 0,\n            \"ABCCode\": \"a\",\n            \"ReorderQuantity\": 0,\n            \"BatchSize\": 0,\n            \"ShelfLife\": 0,\n            \"MaxCasesPerPallet\": 0,\n            \"LeadTime\": 0,\n            \"MinimumOrder\": 0,\n            \"ServiceLevel\": 0,\n            \"Costs\": [\n                {\n                    \"Id\": 1,\n                    \"Label\": \"True\",\n                    \"Amount\": 6.5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 2,\n                    \"Label\": \"Salesperson\",\n                    \"Amount\": 5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {\n                        \"PadAmount\": 0,\n                        \"PadType\": \"Dollar\"\n                    }\n                },\n                {\n                    \"Id\": 4,\n                    \"Label\": \"Invoice\",\n                    \"Amount\": 6.5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 5,\n                    \"Label\": \"Market\",\n                    \"Amount\": 5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 6,\n                    \"Label\": \"Average\",\n                    \"Amount\": 6.5,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 7,\n                    \"Label\": \"Freight\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                }\n            ],\n            \"CostAccount\": {},\n            \"InventoryAccount\": {},\n            \"PurchaseClearingAccount\": {},\n            \"PromoAccount\": {},\n            \"SalesAccount\": {},\n            \"SpoilAccount\": {},\n            \"Comment\": \"\",\n            \"Formula\": {\n                \"Id\": 90001,\n                \"Code\": \"20P\",\n                \"Description\": \"20 Percent (Testing Formula)\"\n            },\n            \"LotControl\": \"No\",\n            \"CreateLotDefault\": \"Previous/Current\",\n            \"PrintLabelPoRec\": false,\n            \"PurchaseOrderLabel\": {},\n            \"OrderEntryLabel\": {},\n            \"WorkOrderLabel\": {},\n            \"LabelDescription\": \"\",\n            \"Ingredients\": \"\",\n            \"MobileDescription\": \"\"\n        }\n    ],\n    \"NumResults\": 10\n}"}],"_postman_id":"a20cc2f5-3a2b-4d4c-80eb-aa812f788d42"},{"name":"Retrieve an item","event":[{"listen":"prerequest","script":{"id":"48e0d482-2cc6-4d69-9318-13a79e2b0a0c","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"9f759d86-ce30-44b9-97f2-72e0750ca130","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"19eaff32-7115-499d-be5f-d6805ddf3b86","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId","description":"<p>List a specific item that matches the itemId</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[{"id":"3b62c1c9-d5cf-4a16-9da0-8ba332b6b55f","name":"Retrieve an item","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId"],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}],"variable":[{"key":"itemId","value":"108210002","description":"Required. Enter an Item ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 19:02:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=3DB510FA0AE9B614900D96A57975CB4C; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Items\": [\n        {\n            \"Id\": 108210002,\n            \"Code\": \"*90\",\n            \"Description\": \"xxxxx\",\n            \"ExtendedDescription\": \"\",\n            \"PrimaryVendor\": {},\n            \"PrimaryVendorItem\": \"\",\n            \"Brand\": {},\n            \"Item Category\": {},\n            \"OrderGuideCategory\": {},\n            \"PriceBookCategory\": {},\n            \"MobileCategory\": {},\n            \"PackingArea\": {},\n            \"SubItemCategory\": {},\n            \"SecondarySubItemCategory\": {},\n            \"Species\": {},\n            \"Taxable\": false,\n            \"NonFoodTaxable\": false,\n            \"GTIN\": \"\",\n            \"ExpirationDate\": null,\n            \"OrderGuideColor\": {\n                \"Id\": \"\",\n                \"Description\": \"\"\n            },\n            \"SpecialInstructions\": \"\",\n            \"Warehouse\": {},\n            \"DoNotSell\": false,\n            \"ExcludeGlobalBrokenCase\": false,\n            \"CutoffTime\": \"\",\n            \"ExcludeFromPriceList\": false,\n            \"IsAlwaysAvailable\": false,\n            \"IsCatchWeight\": false,\n            \"IsWeightOnly\": false,\n            \"StandardWeight\": {\n                \"Amount\": 1,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"WeightDeviationPercent\": 12.21,\n            \"CaseConversion\": {\n                \"Amount\": 1,\n                \"UOM\": {\n                    \"Id\": 1,\n                    \"Name\": \"EA\",\n                    \"Description\": \"Each\"\n                }\n            },\n            \"HasCatchBox\": false,\n            \"CuttingTicket\": false,\n            \"ShellTicket\": false,\n            \"PickLabel\": true,\n            \"PackSize\": \"\",\n            \"CubicFeet\": 0,\n            \"RetailPrice\": 0,\n            \"StockUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"SellUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"PriceUOM\": {\n                \"Id\": 3,\n                \"Name\": \"CS\",\n                \"Description\": \"Case\"\n            },\n            \"CanBreakEach\": true,\n            \"IsCaseOnly\": false,\n            \"StockStatus\": \"Inventory\",\n            \"Type\": \"Ordinary\",\n            \"TrackCounts\": true,\n            \"DaysOfAvailability\": false,\n            \"DaysAvailable\": 0,\n            \"ABCCode\": \"\",\n            \"ReorderQuantity\": 0,\n            \"BatchSize\": 0,\n            \"ShelfLife\": 0,\n            \"MaxCasesPerPallet\": 0,\n            \"LeadTime\": 0,\n            \"MinimumOrder\": 0,\n            \"ServiceLevel\": 0,\n            \"Costs\": [\n                {\n                    \"Id\": 1,\n                    \"Label\": \"True\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 2,\n                    \"Label\": \"Salesperson\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {\n                        \"PadAmount\": 0,\n                        \"PadType\": \"D\"\n                    }\n                },\n                {\n                    \"Id\": 3,\n                    \"Label\": \"Purchase\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 4,\n                    \"Label\": \"Invoice\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 5,\n                    \"Label\": \"Market\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 6,\n                    \"Label\": \"Average\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 7,\n                    \"Label\": \"Freight\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 3,\n                        \"Name\": \"CS\",\n                        \"Description\": \"Case\"\n                    },\n                    \"Pad\": {}\n                }\n            ],\n            \"CostAccount\": {},\n            \"InventoryAccount\": {},\n            \"PurchaseClearingAccount\": {},\n            \"PromoAccount\": {},\n            \"SalesAccount\": {},\n            \"SpoilAccount\": {},\n            \"Comment\": \"\",\n            \"Formula\": {},\n            \"LotControl\": \"Default Value\",\n            \"CreateLotDefault\": \"Previous/Current\",\n            \"PrintLabelPoRec\": false,\n            \"PurchaseOrderLabel\": {},\n            \"OrderEntryLabel\": {},\n            \"WorkOrderLabel\": {},\n            \"LabelDescription\": \"\",\n            \"Ingredients\": \"\",\n            \"MobileDescription\": \"\"\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"19eaff32-7115-499d-be5f-d6805ddf3b86"}],"id":"c999027c-1217-4ee5-bc2c-c8721c970b5b","_postman_id":"c999027c-1217-4ee5-bc2c-c8721c970b5b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Certs","item":[{"name":"List all certs for an Item","event":[{"listen":"prerequest","script":{"id":"781d1bfc-e250-4d0c-9806-2434cc7d3419","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"99948ee8-416c-4578-b461-d1ff995bd662","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"499df90b-6935-4467-8f23-dd49dec7318e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/certs","description":"<p>List all certs for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","certs"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[{"id":"4116e89c-25e5-4cb6-90df-d72fce920886","name":"List all Item's certs","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/certs","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","certs"],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}],"variable":[{"key":"itemId","value":"95890002","description":"Required. Enter an Item ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 19:14:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=A5DED942E6BA799B710B68B685E3485F; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Items\": [\n        {\n            \"Id\": 95890002,\n            \"Code\": \"0002 FG Catch\",\n            \"Description\": \"Finished Good Catch\",\n            \"Certs\": [\n                {\n                    \"Id\": 1,\n                    \"Code\": \"GoodCert\",\n                    \"Description\": \"Good Cert\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"499df90b-6935-4467-8f23-dd49dec7318e"},{"name":"Retrieve a cert for an item","event":[{"listen":"prerequest","script":{"id":"c93ef983-8edc-4525-91e9-d4eb423154e8","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"680b0c2e-5990-46d4-a798-02eddcedca1c","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"3ee71f88-db29-412f-9f9f-b90617e153d9","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/certs/:certId","description":"<p>List a specific cert for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","certs",":certId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Cert ID</p>\n","type":"text/plain"},"type":"any","value":"{{certId}}","key":"certId"}]}},"response":[{"id":"fc902353-4039-4423-b167-fc80fc03b3b1","name":"Retrieve a cert for an item","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/certs/:certId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","certs",":certId"],"variable":[{"key":"itemId","value":"95890002","description":"Required. Enter an Item ID"},{"key":"certId","value":"1","description":"Required. Enter a Cert ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 19:14:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=1E5D2C5E6BD1694B0C11E88928E8136C; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Items\": [\n        {\n            \"Id\": 95890002,\n            \"Code\": \"0002 FG Catch\",\n            \"Description\": \"Finished Good Catch\",\n            \"Certs\": [\n                {\n                    \"Id\": 1,\n                    \"Code\": \"GoodCert\",\n                    \"Description\": \"Good Cert\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"3ee71f88-db29-412f-9f9f-b90617e153d9"},{"name":"List all certs for multiple items","event":[{"listen":"prerequest","script":{"id":"781d1bfc-e250-4d0c-9806-2434cc7d3419","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"99948ee8-416c-4578-b461-d1ff995bd662","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"ffb34aac-b90f-4d7a-b321-13f80933035e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/certs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","certs"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"ffb34aac-b90f-4d7a-b321-13f80933035e"}],"id":"3e439572-a436-4640-a9f0-64081f1f885e","_postman_id":"3e439572-a436-4640-a9f0-64081f1f885e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Charges","item":[{"name":"List all charges for an Item","event":[{"listen":"prerequest","script":{"id":"9e2d0f6d-11f1-42c8-bf58-e2b65833fb15","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"58f0c971-d74f-4fa5-ad5c-d9e87e3dd401","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"2d4ad858-c81f-4570-a0ae-600c0e2a519b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/charges","description":"<p>List all charges for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","charges"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[{"id":"7b49de1c-cbba-490a-830a-17d575643bbb","name":"List all Item's charges","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/charges","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","charges"],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}],"variable":[{"key":"itemId","value":"95890002","description":"Required. Enter an Item ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 19:15:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=E71BCFF2BAA843DE14F1C425E2C8B2F3; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Items\": [\n        {\n            \"Id\": 95890002,\n            \"Code\": \"0002 FG Catch\",\n            \"Description\": \"Finished Good Catch\",\n            \"Charges\": [\n                {\n                    \"Id\": 38,\n                    \"Code\": \"Delivery\",\n                    \"Descrip\": \"Delivery\",\n                    \"Type\": \"Price\",\n                    \"Amount\": 20,\n                    \"UOM\": \"Total Entry\",\n                    \"IncludeIn\": \"Trans Freight\"\n                },\n                {\n                    \"Id\": 28,\n                    \"Code\": \"OEFuelChrg\",\n                    \"Descrip\": \"OE Fuel Charge\",\n                    \"Type\": \"Price\",\n                    \"Amount\": 0.05,\n                    \"UOM\": \"Weight\",\n                    \"IncludeIn\": \"Trans Freight\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 2\n}"}],"_postman_id":"2d4ad858-c81f-4570-a0ae-600c0e2a519b"},{"name":"Retrieve a charge for an item","event":[{"listen":"prerequest","script":{"id":"f3a165b7-337f-439a-9203-d082b0be1846","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"aeb66599-9bec-4c21-9f1f-839a7001f43a","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"ce99cd9b-3fbe-44d9-8ada-fbdeabbb0387","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/charges/:chargeId","description":"<p>List a specific charge for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","charges",":chargeId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Charge ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemChargeId}}","key":"chargeId"}]}},"response":[{"id":"ba1d6302-d5f2-4298-b7b5-c36d5362980d","name":"Retrieve a charge for an item","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/charges/:chargeId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","charges",":chargeId"],"variable":[{"key":"itemId","value":"95890002","description":"Required. Enter an Item ID"},{"key":"chargeId","value":"38","description":"Required. Enter a Charge ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 19:16:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=C48789BF73B2AF75E0030B64207FAF1D; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Items\": [\n        {\n            \"Id\": 95890002,\n            \"Code\": \"0002 FG Catch\",\n            \"Description\": \"Finished Good Catch\",\n            \"Charges\": [\n                {\n                    \"Id\": 38,\n                    \"Code\": \"Delivery\",\n                    \"Descrip\": \"Delivery\",\n                    \"Type\": \"Price\",\n                    \"Amount\": 20,\n                    \"UOM\": \"Total Entry\",\n                    \"IncludeIn\": \"Trans Freight\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"ce99cd9b-3fbe-44d9-8ada-fbdeabbb0387"},{"name":"List all charges for multiple Items","event":[{"listen":"prerequest","script":{"id":"9e2d0f6d-11f1-42c8-bf58-e2b65833fb15","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"58f0c971-d74f-4fa5-ad5c-d9e87e3dd401","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"bbc1a706-ca4d-48f6-a5cb-66afd0ec1b70","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/charges","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","charges"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"bbc1a706-ca4d-48f6-a5cb-66afd0ec1b70"}],"id":"fc21f204-f0a8-4365-8708-02b6e9378399","_postman_id":"fc21f204-f0a8-4365-8708-02b6e9378399","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Costs","item":[{"name":"List all costs for an Item","event":[{"listen":"prerequest","script":{"id":"12931be5-8419-4483-8101-f69521e66946","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"46ee199e-19bf-4bc2-bd79-b6f52edd08fe","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"d1eb53c3-3040-4569-9824-63366b46d694","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/costs","description":"<p>List all costs for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","costs"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[{"id":"aa1f67b0-f0db-4927-92cc-a0e050ef2818","name":"List all Item's costs","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/costs","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","costs"],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}],"variable":[{"key":"itemId","value":"95890002","description":"Required. Enter an Item ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 19:16:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=11266BDD2B60856C588A7717F64530AF; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Items\": [\n        {\n            \"Id\": 95890002,\n            \"Code\": \"0002 FG Catch\",\n            \"Description\": \"Finished Good Catch\",\n            \"Costs\": [\n                {\n                    \"Id\": 1,\n                    \"Label\": \"True\",\n                    \"Amount\": 13.25,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 2,\n                    \"Label\": \"Salesperson\",\n                    \"Amount\": 13.25,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {\n                        \"PadAmount\": 0,\n                        \"PadType\": \"Dollar\"\n                    }\n                },\n                {\n                    \"Id\": 3,\n                    \"Label\": \"Purchase\",\n                    \"Amount\": 13.25,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 4,\n                    \"Label\": \"Invoice\",\n                    \"Amount\": 13.25,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 5,\n                    \"Label\": \"Market\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 6,\n                    \"Label\": \"Average\",\n                    \"Amount\": 13.25,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                },\n                {\n                    \"Id\": 7,\n                    \"Label\": \"Freight\",\n                    \"Amount\": 0,\n                    \"UOM\": {\n                        \"Id\": 10,\n                        \"Name\": \"LB\",\n                        \"Description\": \"Pound\"\n                    },\n                    \"Pad\": {}\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"d1eb53c3-3040-4569-9824-63366b46d694"},{"name":"Retrieve a cost for an item","event":[{"listen":"prerequest","script":{"id":"d833a334-30e5-4df4-8269-643e5414820f","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"c41ecfeb-3509-4605-baee-8fbfdae9a852","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"b1495a79-c63b-4d71-a037-35684fa08b4a","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/costs/:costId","description":"<p>List a specific cost for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","costs",":costId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Cost ID</p>\n","type":"text/plain"},"type":"any","value":"{{costId}}","key":"costId"}]}},"response":[],"_postman_id":"b1495a79-c63b-4d71-a037-35684fa08b4a"},{"name":"Update a cost for an item","id":"54fe93de-1382-4ac6-b633-4da7b9c3e76f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"UOM\":{\r\n        \"Name\": \"CS\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/costs/:costId","description":"<p>List a specific cost for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","costs",":costId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Cost ID</p>\n","type":"text/plain"},"type":"any","value":"{{costId}}","key":"costId"}]}},"response":[],"_postman_id":"54fe93de-1382-4ac6-b633-4da7b9c3e76f"},{"name":"List all costs for multiple Items","event":[{"listen":"prerequest","script":{"id":"12931be5-8419-4483-8101-f69521e66946","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"46ee199e-19bf-4bc2-bd79-b6f52edd08fe","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"fdccb08e-bb30-4ef6-a28e-0fbd3b2168df","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/costs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","costs"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"fdccb08e-bb30-4ef6-a28e-0fbd3b2168df"}],"id":"4b9e4838-1432-4d0e-a8d5-031b13fe1616","_postman_id":"4b9e4838-1432-4d0e-a8d5-031b13fe1616","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Custom Fields","item":[{"name":"List all custom fields for an item","event":[{"listen":"prerequest","script":{"id":"73435696-8350-4425-bf1a-82cb64a29c59","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"bae129d0-9111-4f37-9e4b-8e040255e403","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"6d9bede9-adf3-4917-8f95-ffb0e536f2c7","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/custom-fields","description":"<p>Get a list of Custom Fields for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","custom-fields"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"6d9bede9-adf3-4917-8f95-ffb0e536f2c7"},{"name":"List all custom fields for a header","event":[{"listen":"prerequest","script":{"id":"706b089c-912d-4285-9ad4-b318d106b2da","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"de7722c4-5226-4ed8-875d-3a8d7261dc87","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"339e31e1-b4ce-4df5-bda2-08d8f39d2e41","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/custom-fields/:headerId","description":"<p>Get a list of Custom Fields for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","custom-fields",":headerId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Header ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemCustomFieldHeaderId}}","key":"headerId"}]}},"response":[],"_postman_id":"339e31e1-b4ce-4df5-bda2-08d8f39d2e41"},{"name":"Retrieve a custom field","event":[{"listen":"prerequest","script":{"id":"2116fbbe-96f9-4e63-a32b-c73798467b07","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"302e1eaf-e950-4db1-a18a-9f3bc25dce0d","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"5ba24533-fda8-4e15-b9c2-0aee991f620e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/custom-fields/:headerId/:detailId","description":"<p>Get a list of Custom Fields for a item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","custom-fields",":headerId",":detailId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Header ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemCustomFieldHeaderId}}","key":"headerId"},{"description":{"content":"<p>Required. Enter a Detail ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemCustomFieldDetailId}}","key":"detailId"}]}},"response":[],"_postman_id":"5ba24533-fda8-4e15-b9c2-0aee991f620e"},{"name":"List all custom fields for multiple items","event":[{"listen":"prerequest","script":{"id":"73435696-8350-4425-bf1a-82cb64a29c59","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"bae129d0-9111-4f37-9e4b-8e040255e403","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"6fd21ae6-7b31-4d9c-a4a2-74c1ba25ef40","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/custom-fields","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","custom-fields"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"6fd21ae6-7b31-4d9c-a4a2-74c1ba25ef40"}],"id":"238b41f8-9676-4673-b68f-3481420ad534","_postman_id":"238b41f8-9676-4673-b68f-3481420ad534","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Formula Prices","item":[{"name":"List all formula prices for an Item","event":[{"listen":"prerequest","script":{"id":"d4e4e7d8-8621-45ca-9c1b-b5d090cc8534","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"1fad3876-c725-483b-bff9-2290bd6723da","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"7fe69ebd-e7a9-4332-9fd7-4a75360ad139","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/formula-prices","description":"<p>List all formula prices for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","formula-prices"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"7fe69ebd-e7a9-4332-9fd7-4a75360ad139"},{"name":"Retrieve a formula price list for an item","event":[{"listen":"prerequest","script":{"id":"1fd23e5e-5c53-40ce-a0a9-2b8d13c1a2f0","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"172b93ee-6f8c-430e-99c2-54d0f6a7d8f5","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"72484898-78f1-4308-a5dc-43a5ec888a66","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/formula-prices/:pricelistId","description":"<p>List a specific formula price list for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","formula-prices",":pricelistId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Formula Price List ID</p>\n","type":"text/plain"},"type":"any","value":"{{pricelistId}}","key":"pricelistId"}]}},"response":[],"_postman_id":"72484898-78f1-4308-a5dc-43a5ec888a66"},{"name":"List all formula prices for multiple Items","event":[{"listen":"prerequest","script":{"id":"d4e4e7d8-8621-45ca-9c1b-b5d090cc8534","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"1fad3876-c725-483b-bff9-2290bd6723da","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"0da7dcef-d40c-479f-87d0-31836fd9606f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/formula-prices","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","formula-prices"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"0da7dcef-d40c-479f-87d0-31836fd9606f"}],"id":"5f6dde0e-1534-4bec-9a41-613d91e6316e","_postman_id":"5f6dde0e-1534-4bec-9a41-613d91e6316e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Groups","item":[{"name":"List all groups for an Item","event":[{"listen":"prerequest","script":{"id":"6f02e1eb-1e63-43fa-8e64-caace4bebb23","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"d3512a09-f3d0-4f68-8f8d-53d6a1b631d6","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"8cf09f20-8f11-4df4-b8e9-f6795d7a717d","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/groups","description":"<p>List all formula prices for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","groups"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"8cf09f20-8f11-4df4-b8e9-f6795d7a717d"},{"name":"Retrieve a group for an item","event":[{"listen":"prerequest","script":{"id":"ffc89995-0a0a-4cbf-8240-e89da4e91408","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"6accf2d4-0c8d-4560-91f4-e686a8b11ef6","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"3ab9c28c-a6b6-4a17-b52d-77c96b72feba","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/groups/:groupId","description":"<p>List a specific formula price list for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","groups",":groupId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Group ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemGroupId}}","key":"groupId"}]}},"response":[],"_postman_id":"3ab9c28c-a6b6-4a17-b52d-77c96b72feba"},{"name":"List all groups for multiple Items","event":[{"listen":"prerequest","script":{"id":"6f02e1eb-1e63-43fa-8e64-caace4bebb23","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"d3512a09-f3d0-4f68-8f8d-53d6a1b631d6","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"48957617-2926-4854-8366-b4bb0a3191be","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","groups"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"48957617-2926-4854-8366-b4bb0a3191be"}],"id":"7a0ac126-3896-4ae3-bd01-c65c23758b5d","_postman_id":"7a0ac126-3896-4ae3-bd01-c65c23758b5d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Inventory Counts","item":[{"name":"List all inventory counts for an Item","event":[{"listen":"prerequest","script":{"id":"e29465d1-74df-4977-8ff4-12ea65781f51","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"ea0547e3-78f7-47b3-8d9e-2f8b44f629e7","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"179264cd-2f58-4274-88e2-f6ccfc649aa0","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/inventory-counts","description":"<p>List the inventory counts for all warehouses for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","inventory-counts"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"179264cd-2f58-4274-88e2-f6ccfc649aa0"},{"name":"Retrieve a warehouse's counts for an item","event":[{"listen":"prerequest","script":{"id":"ea70fd80-3ddb-4a45-887b-42e9acedc4e2","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"f48ad7ad-b5b4-4c27-be95-e87dedb669f9","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"0c47ce1b-321b-4a0f-9358-e8e5443e5e75","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/inventory-counts/:warehouseId","description":"<p>List an individual warehouses inventory counts for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","inventory-counts",":warehouseId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Warehouse ID</p>\n","type":"text/plain"},"type":"any","value":"{{warehouseId}}","key":"warehouseId"}]}},"response":[],"_postman_id":"0c47ce1b-321b-4a0f-9358-e8e5443e5e75"},{"name":"List all inventory counts for multiple Items","event":[{"listen":"prerequest","script":{"id":"e29465d1-74df-4977-8ff4-12ea65781f51","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"ea0547e3-78f7-47b3-8d9e-2f8b44f629e7","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e9dfc217-a5ec-4a61-ac57-75f9d8b4dba1","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/inventory-counts","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","inventory-counts"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"e9dfc217-a5ec-4a61-ac57-75f9d8b4dba1"}],"id":"942cf5ce-03d1-4b13-bccd-16748e6e5ac3","_postman_id":"942cf5ce-03d1-4b13-bccd-16748e6e5ac3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Linked Items","item":[{"name":"List all linked items for an Item","event":[{"listen":"prerequest","script":{"id":"973c15b3-d013-430a-9b17-db2401d15f24","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"3823ae07-eb15-45ee-84e0-1647cbe7124a","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"36ec9fc4-6c3f-4fdb-a2d3-b32eff92a86c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/linked-items","description":"<p>List all the Linked Items for an Item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","linked-items"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"36ec9fc4-6c3f-4fdb-a2d3-b32eff92a86c"},{"name":"Retrieve a linked item for an item","event":[{"listen":"prerequest","script":{"id":"55d1367e-0946-4d81-aab5-2dfa8e8f55ca","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"063bd59b-0b91-4500-8d45-087f7d655b15","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"55d625fb-f386-4b76-9f2c-dc2c5504cfcb","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/linked-items/:linkedItemId","description":"<p>List an individual linked item for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","linked-items",":linkedItemId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Linked Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{linkedItemId}}","key":"linkedItemId"}]}},"response":[],"_postman_id":"55d625fb-f386-4b76-9f2c-dc2c5504cfcb"},{"name":"List all linked items for multiple Items","event":[{"listen":"prerequest","script":{"id":"973c15b3-d013-430a-9b17-db2401d15f24","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"3823ae07-eb15-45ee-84e0-1647cbe7124a","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a6a614af-e5dc-4d57-8192-50df8441ea98","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/linked-items","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","linked-items"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"a6a614af-e5dc-4d57-8192-50df8441ea98"}],"id":"ba9c43b0-4a25-4d86-bf90-deed4f6af371","_postman_id":"ba9c43b0-4a25-4d86-bf90-deed4f6af371","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Price Lists","item":[{"name":"List all Price Lists for an Item","event":[{"listen":"prerequest","script":{"id":"05570417-3f05-4f2e-a21f-2576a2ef3e2e","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"3e550fb5-6318-492a-935a-4a2b4fb964a9","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"d597efbc-ef79-4253-8c0c-2ea0f0ddca60","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/price-lists","description":"<p>List all price list for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","price-lists"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{pricelistItemId}}","key":"itemId"}]}},"response":[],"_postman_id":"d597efbc-ef79-4253-8c0c-2ea0f0ddca60"},{"name":"Retrieve an item's Price List","event":[{"listen":"prerequest","script":{"id":"ac733d54-be2a-4ad2-b3df-77e3a336ad28","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"ef7c2150-025d-487d-9f05-ec754661932c","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"eaebf3fc-edce-4fef-936c-e74a93768a39","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/price-lists/:pricelistId","description":"<p>List a specific price list for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","price-lists",":pricelistId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{pricelistItemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Price List ID</p>\n","type":"text/plain"},"type":"any","value":"{{pricelistId}}","key":"pricelistId"}]}},"response":[],"_postman_id":"eaebf3fc-edce-4fef-936c-e74a93768a39"},{"name":"List all Price Lists for multiple Items","event":[{"listen":"prerequest","script":{"id":"05570417-3f05-4f2e-a21f-2576a2ef3e2e","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"3e550fb5-6318-492a-935a-4a2b4fb964a9","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"97dbd369-1242-457d-bd2e-dfad7b0e473d","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/price-lists","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","price-lists"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"97dbd369-1242-457d-bd2e-dfad7b0e473d"}],"id":"b4b3b344-3935-4dbb-a17d-65051b6b53d3","_postman_id":"b4b3b344-3935-4dbb-a17d-65051b6b53d3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Secure Customers","item":[{"name":"List all secure customers for an Item","event":[{"listen":"prerequest","script":{"id":"b90b6e2d-6c19-455f-a89f-4d50f3773f30","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"07367d98-e909-4f84-8fca-e89398329138","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"9bc7bf55-b543-4472-a566-6d9d0188ae1c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/secure-customers","description":"<p>List all secure customers for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","secure-customers"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"9bc7bf55-b543-4472-a566-6d9d0188ae1c"},{"name":"Retrieve an item's secure customer","event":[{"listen":"prerequest","script":{"id":"58e7f0ae-d488-4a7f-a475-1fd04fff1784","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"c0d2e02c-c62d-4f3c-8f04-8abf4ac88e08","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"97ede40a-2754-4088-9958-471c60c572cc","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/secure-customers/:customerId","description":"<p>List a specific secure customer for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","secure-customers",":customerId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Customer ID</p>\n","type":"text/plain"},"type":"any","value":"{{customerId}}","key":"customerId"}]}},"response":[],"_postman_id":"97ede40a-2754-4088-9958-471c60c572cc"},{"name":"List all secure customers for multiple Items","event":[{"listen":"prerequest","script":{"id":"b90b6e2d-6c19-455f-a89f-4d50f3773f30","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"07367d98-e909-4f84-8fca-e89398329138","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"0153322c-176f-4ebe-8abe-c577d6aaaf66","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/secure-customers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","secure-customers"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"0153322c-176f-4ebe-8abe-c577d6aaaf66"}],"id":"18216a89-c55b-4c56-b5c5-078bfc4c9ab5","_postman_id":"18216a89-c55b-4c56-b5c5-078bfc4c9ab5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Specs","item":[{"name":"List all Specs for an Item","event":[{"listen":"prerequest","script":{"id":"32ce1965-938b-40bf-bf33-4bb001a62f6a","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"c98ea22d-d7b2-4a56-8d1a-c0a58801e81e","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"a29a4a42-e64f-47b0-8ea8-e42c146306f3","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/specs","description":"<p>List all specifications for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","specs"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"a29a4a42-e64f-47b0-8ea8-e42c146306f3"},{"name":"Retrieve an item's spec","event":[{"listen":"prerequest","script":{"id":"342657d2-4182-45f0-9dd6-0deef1625f46","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"4afad8bd-3e40-4987-a9f3-899ed2f0a21c","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"e632f85d-6e17-493c-9e92-8edbb1cce05f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/specs/:specId","description":"<p>List an individual specification for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","specs",":specId"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Spec ID</p>\n","type":"text/plain"},"type":"any","value":"{{specId}}","key":"specId"}]}},"response":[],"_postman_id":"e632f85d-6e17-493c-9e92-8edbb1cce05f"},{"name":"List all Specs for multiple Items","event":[{"listen":"prerequest","script":{"id":"32ce1965-938b-40bf-bf33-4bb001a62f6a","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"c98ea22d-d7b2-4a56-8d1a-c0a58801e81e","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"23807238-399a-4255-bfbe-fc068867d678","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/specs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","specs"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"23807238-399a-4255-bfbe-fc068867d678"}],"id":"7c6dc320-5852-4207-9025-13b0ef2e35d3","_postman_id":"7c6dc320-5852-4207-9025-13b0ef2e35d3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Tags","item":[{"name":"List all Tags for an Item","event":[{"listen":"prerequest","script":{"id":"dc794e43-13cc-4f45-bf5d-2686b3d1abf1","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"3980e2b6-0970-4b21-b53c-3a94b7b431c5","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"f8cf3992-d4e3-499e-a13a-14415403f3e0","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/tags","description":"<p>List all tags for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","tags"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"f8cf3992-d4e3-499e-a13a-14415403f3e0"},{"name":"Retrieve an item's tag","event":[{"listen":"prerequest","script":{"id":"f6188410-7abb-4560-a1ca-b2b8dad69db9","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"e443bc98-efff-4a9b-b173-d14b420780ec","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"cdd12731-d7b6-4d5e-9f2e-947c1d70444f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/tags/:tagId","description":"<p>List an individual tag for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","tags",":tagId"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Tag ID</p>\n","type":"text/plain"},"type":"any","value":"{{tagId}}","key":"tagId"}]}},"response":[],"_postman_id":"cdd12731-d7b6-4d5e-9f2e-947c1d70444f"},{"name":"List all Tags for multiple Items","event":[{"listen":"prerequest","script":{"id":"dc794e43-13cc-4f45-bf5d-2686b3d1abf1","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"3980e2b6-0970-4b21-b53c-3a94b7b431c5","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"9f004bdf-4e78-480d-8280-63f038077e5c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","tags"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"9f004bdf-4e78-480d-8280-63f038077e5c"}],"id":"2dc7f3ee-f90c-49e7-9b6d-93bdbdead528","_postman_id":"2dc7f3ee-f90c-49e7-9b6d-93bdbdead528","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item UOMs","item":[{"name":"List all UOMs for an Item","event":[{"listen":"prerequest","script":{"id":"469dac40-c72b-4035-8415-52237b72afbb","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"6bec37e0-95c9-4831-9f1b-3eee53535255","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"877b1677-6ec4-41cf-9103-1690c9c5c58c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/uoms","description":"<p>List all UOMs for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","uoms"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"877b1677-6ec4-41cf-9103-1690c9c5c58c"},{"name":"Retrieve an item's uom","event":[{"listen":"prerequest","script":{"id":"78246f93-5aaf-49de-9b71-d4d4e8a456ee","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"cbe58332-3bb2-4c39-88f9-641ca3b8c50b","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"9f140442-5283-47f3-8023-8fc31aad5692","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/uoms/:uomId","description":"<p>List an individual UOM for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","uoms",":uomId"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a UOM ID</p>\n","type":"text/plain"},"type":"any","value":"{{uomId}}","key":"uomId"}]}},"response":[],"_postman_id":"9f140442-5283-47f3-8023-8fc31aad5692"},{"name":"List all UOMs for multiple Items","event":[{"listen":"prerequest","script":{"id":"469dac40-c72b-4035-8415-52237b72afbb","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"6bec37e0-95c9-4831-9f1b-3eee53535255","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"93102161-e858-43b6-81d6-9d30e6355be8","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/uoms","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","uoms"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"93102161-e858-43b6-81d6-9d30e6355be8"}],"id":"dc7f023b-c753-43e3-b9b0-5aea8c2cf083","_postman_id":"dc7f023b-c753-43e3-b9b0-5aea8c2cf083","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item UPCs","item":[{"name":"List all UPCs for an Item","event":[{"listen":"prerequest","script":{"id":"955fd2f1-c589-4340-bdd4-dd630b608b22","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"6262d62c-ea9d-4772-878a-3d18babbea6c","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"da949472-fb69-40ac-8f02-ed23c01d3dd3","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/upcs","description":"<p>List all UPCs for an item</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","upcs"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"da949472-fb69-40ac-8f02-ed23c01d3dd3"},{"name":"Retrieve an item's UPC","event":[{"listen":"prerequest","script":{"id":"a4a2b677-96c2-49f2-892e-2deaf8f5abed","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"6ae950bd-09bd-4d0b-ae03-352457ab5503","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"c138cd7c-09cc-496f-b025-770991db8633","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/upcs/:upcCode","description":"<p>List an individual UPC for an item based on the UPC code</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","upcs",":upcCode"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Individual UPC code to get</p>\n","type":"text/plain"},"type":"any","value":"{{upcCode}}","key":"upcCode"}]}},"response":[],"_postman_id":"c138cd7c-09cc-496f-b025-770991db8633"},{"name":"List all UPCs for multiple Items","event":[{"listen":"prerequest","script":{"id":"955fd2f1-c589-4340-bdd4-dd630b608b22","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"6262d62c-ea9d-4772-878a-3d18babbea6c","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"01ad7c7d-0456-4c22-a0d8-13d84f29ceef","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/upcs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","upcs"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""},{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"01ad7c7d-0456-4c22-a0d8-13d84f29ceef"}],"id":"d9255bff-8f38-4582-8bc6-d49f9c6c2119","_postman_id":"d9255bff-8f38-4582-8bc6-d49f9c6c2119","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Item Vendors","item":[{"name":"List all Vendors for an Item","event":[{"listen":"prerequest","script":{"id":"5561c96c-8f89-4878-90d9-fc426f9c16fe","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"ffa41f5c-7cd7-4e92-b590-d24d65e4f531","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"a5f566d3-bc7e-4158-bb41-81dbf003fa1b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/vendors","description":"<p>List all items with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","vendors"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"a5f566d3-bc7e-4158-bb41-81dbf003fa1b"},{"name":"List all Vendors for multiple Items","event":[{"listen":"prerequest","script":{"id":"5561c96c-8f89-4878-90d9-fc426f9c16fe","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}},"requests":{}}},{"listen":"test","script":{"id":"ffa41f5c-7cd7-4e92-b590-d24d65e4f531","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"9fea666a-0099-490a-82b0-79210199edc3","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/vendors","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items","vendors"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Limit the number of results to number specified.  Default value and max value is 1000.\nCan be used with the gtItemCode and ltItemCode to page through a long list of items.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the items code is greater than the value provided</p>\n","type":"text/plain"},"key":"gtItemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only return items where the item code is less than the value provided</p>\n","type":"text/plain"},"key":"ltItemCode","value":""}],"variable":[]}},"response":[],"_postman_id":"9fea666a-0099-490a-82b0-79210199edc3"},{"name":"Retrieve an item's Vendor","event":[{"listen":"prerequest","script":{"id":"f614135d-bb9b-4fd6-8315-a7ccd0ee155a","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"699ba8ad-c64f-4388-b5ed-ff66b30aae59","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"be5419b7-a2e4-466f-93ad-325f18f3e3a0","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/items/:itemId/vendors/:vendorId","description":"<p>List a specific item that matches the itemId</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","items",":itemId","vendors",":vendorId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter an Item ID</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"},{"description":{"content":"<p>Required. Enter a Vendor IDQ</p>\n","type":"text/plain"},"type":"any","value":"{{vendorId}}","key":"vendorId"}]}},"response":[],"_postman_id":"be5419b7-a2e4-466f-93ad-325f18f3e3a0"}],"id":"ae582184-d67a-4c49-9de7-5bcbca541a64","_postman_id":"ae582184-d67a-4c49-9de7-5bcbca541a64","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Orders","item":[{"name":"List all Orders","event":[{"listen":"test","script":{"id":"0cc6ab70-884f-4d2a-afb2-24dde41f634c","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"30768f9f-0e4b-4b0f-8915-fcac4bf03b37","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"75801761-c59a-40e0-8f35-c8e6029e3868","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders?status=A","description":"<h3 id=\"retrieve-orders\">Retrieve Orders</h3>\n<p>This endpoint retrieves a list of orders based on the provided status.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>Endpoint: <code>https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders</code></p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li><code>status</code> (string, required): Specifies the status of the orders to be retrieved.</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","orders"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required.\n<code>All</code>,\n<code>Un-Submitted</code>,\n<code>New</code>,\n<code>Ticketed</code>,\n<code>Partial</code>,\n<code>Ready to Invoice</code>,\n<code>Invoice</code>, or\n<code>Quote</code></p>\n","type":"text/plain"},"key":"status","value":"A"},{"disabled":true,"description":{"content":"<p>Optional.</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[]}},"response":[{"id":"889bcda4-2a86-453b-83f0-f3fdb110563d","name":"List all Orders","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders?status=A","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","orders"],"query":[{"key":"status","value":"A","description":"Required.\n`All`,\n`Un-Submitted`,\n`New`,\n`Ticketed`,\n`Partial`,\n`Ready to Invoice`,\n`Invoice`, or\n`Quote`"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 01 Mar 2024 19:45:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=DE9B29035E54906036C873DD1C5B48EF; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Orders\": [\n        {\n            \"Id\": 511340002,\n            \"OrderNumber\": 6402,\n            \"Status\": \"New\",\n            \"PaymentType\": \"Charge\",\n            \"OrderDate\": \"2024-01-24\",\n            \"DateNeeded\": \"2024-01-26\",\n            \"Customer\": {\n                \"Id\": 8360002,\n                \"Code\": \"1000011\",\n                \"Name\": \"Ripple Two\"\n            },\n            \"Chain\": {\n                \"Id\": 1000001,\n                \"Code\": \"12589\",\n                \"Name\": \"The Ripplewood Bar & Grill 2.\"\n            },\n            \"BillTo\": {\n                \"Id\": 6710001,\n                \"Addr1\": \"\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"\",\n                \"StateCode\": \"\",\n                \"ZipCode\": \"\",\n                \"Country\": \"\",\n                \"Phone\": \"\",\n                \"Fax\": \"2157940240\",\n                \"Note\": \"\"\n            },\n            \"ShipTo\": {\n                \"Id\": 80650002,\n                \"Addr1\": \"123 Broad Street\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"Hatboro\",\n                \"StateCode\": \"PA\",\n                \"ZipCode\": \"18974\",\n                \"Country\": \"\",\n                \"Phone\": \"\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"Department\": {},\n            \"Salesperson\": {\n                \"Id\": 14,\n                \"Code\": \"AD1\",\n                \"Name\": \"AD 1\"\n            },\n            \"Tax\": {\n                \"Id\": 2,\n                \"Code\": \"PA\",\n                \"Description\": \"PA Sales Tax\"\n            },\n            \"Terms\": {\n                \"Id\": 19,\n                \"Code\": \"19\",\n                \"Description\": \"Net 15\"\n            },\n            \"Warehouse\": {\n                \"Id\": 1,\n                \"Code\": \"WHSE\",\n                \"Name\": \"Warehouse\"\n            },\n            \"Ref\": \"\",\n            \"PO\": \"\",\n            \"PoDate\": null,\n            \"Route\": {},\n            \"StopNumber\": 0,\n            \"FOB\": \"\",\n            \"ShipMethod\": {\n                \"Id\": 7,\n                \"Code\": \"1030am1130am\",\n                \"Description\": \"10:30am~11:30am\"\n            },\n            \"PriceList\": {\n                \"Id\": 10,\n                \"Code\": \"general\",\n                \"Description\": \"General\"\n            },\n            \"SealNumber\": \"\"\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"75801761-c59a-40e0-8f35-c8e6029e3868"},{"name":"List an individual Order","event":[{"listen":"prerequest","script":{"id":"8828988e-e720-4455-aa75-d196f40e722b","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"6426a4b3-a1a9-478b-8e4d-ae1c009db497","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"bf643942-eabf-45cd-81cc-81873be73539","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId","description":"<h3 id=\"retrieve-an-order\">Retrieve an Order</h3>\n<p>This endpoint retrieves the details of a specific order identified by the <code>orderId</code>.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>Endpoint: <code>https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId</code></p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","orders",":orderId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter ID of an order</p>\n","type":"text/plain"},"type":"any","value":"{{orderId}}","key":"orderId"}]}},"response":[{"id":"d4e929e8-e834-46b7-bf07-2c00d1100a26","name":"List an individual Order","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","orders",":orderId"],"variable":[{"key":"orderId","value":"511340002"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:55:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=10334A6356F72148DEABD87CF0C6C312; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Orders\": [\n        {\n            \"Id\": 511340002,\n            \"OrderNumber\": 6402,\n            \"Status\": \"Un-Submitted\",\n            \"PaymentType\": \"Charge\",\n            \"OrderDate\": \"2024-01-24\",\n            \"DateNeeded\": \"2024-01-26\",\n            \"Customer\": {\n                \"Id\": 19490002,\n                \"Code\": \"3 Brothers\",\n                \"Name\": \"3 Brothers Bar and Grill\"\n            },\n            \"Chain\": {},\n            \"BillTo\": {\n                \"Id\": 163100002,\n                \"Addr1\": \"2525 W Main Street\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"Richmond \",\n                \"StateCode\": \"VA\",\n                \"ZipCode\": \"23220\",\n                \"Country\": \"\",\n                \"Phone\": \"(215) 249-2222\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"ShipTo\": {\n                \"Id\": 163100002,\n                \"Addr1\": \"2525 W Main Street\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"Richmond \",\n                \"StateCode\": \"VA\",\n                \"ZipCode\": \"23220\",\n                \"Country\": \"\",\n                \"Phone\": \"(215) 249-2222\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"Department\": {},\n            \"Salesperson\": {\n                \"Id\": 14,\n                \"Code\": \"AD1\",\n                \"Name\": \"AD 1\"\n            },\n            \"Tax\": {\n                \"Id\": 2,\n                \"Code\": \"PA\",\n                \"Description\": \"PA Sales Tax\"\n            },\n            \"Terms\": {\n                \"Id\": 1,\n                \"Code\": \"1\",\n                \"Description\": \"1% 10 Net 30\"\n            },\n            \"Warehouse\": {\n                \"Id\": 1,\n                \"Code\": \"WHSE\",\n                \"Name\": \"Warehouse\"\n            },\n            \"Ref\": \"\",\n            \"PO\": \"\",\n            \"PoDate\": null,\n            \"Route\": {},\n            \"StopNumber\": 0,\n            \"FOB\": \"\",\n            \"ShipMethod\": {\n                \"Id\": 7,\n                \"Code\": \"1030am1130am\",\n                \"Description\": \"10:30am~11:30am\"\n            },\n            \"PriceList\": {\n                \"Id\": 10,\n                \"Code\": \"general\",\n                \"Description\": \"General\"\n            },\n            \"SealNumber\": \"\"\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"bf643942-eabf-45cd-81cc-81873be73539"},{"name":"List an Order's Lines","event":[{"listen":"prerequest","script":{"id":"a9291dc8-4f59-4179-b938-4bcc75d7ccba","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"6cab38a7-90e4-4f61-ae16-c66874834722","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"0b01e086-c930-495b-ab06-089b5216ca80","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId/lines/","description":"<h1 id=\"get-order-lines\">Get Order Lines</h1>\n<p>This endpoint retrieves the details of all the lines associated with a specific order.</p>\n<h2 id=\"request\">Request</h2>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>Endpoint: <code>https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId/lines/</code></p>\n</li>\n<li><p>Path Parameters:</p>\n<ul>\n<li><code>orderId</code> (string): The unique identifier of the order.</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","orders",":orderId","lines",""],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"{{orderId}}","key":"orderId"}]}},"response":[{"id":"4c8c80f0-d7f2-43ce-afb6-0251a902f274","name":"List an Orders Lines","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId/lines/","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","orders",":orderId","lines",""],"variable":[{"key":"orderId","value":"511360002"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 01 Mar 2024 20:06:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=D40735524DAE009D1D16F5E966CD20E6; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Orders\": [\n        {\n            \"Id\": 511360002,\n            \"OrderNumber\": 6404,\n            \"Status\": \"Un-Submitted\",\n            \"PaymentType\": \"Charge\",\n            \"OrderDate\": \"2024-01-24\",\n            \"DateNeeded\": \"2024-01-26\",\n            \"Customer\": {\n                \"Id\": 19490002,\n                \"Code\": \"3 Brothers\",\n                \"Name\": \"3 Brothers Bar and Grill\"\n            },\n            \"Chain\": {},\n            \"BillTo\": {\n                \"Id\": 163100002,\n                \"Addr1\": \"2525 W Main Street\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"Richmond \",\n                \"StateCode\": \"VA\",\n                \"ZipCode\": \"23220\",\n                \"Country\": \"\",\n                \"Phone\": \"(215) 249-2222\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"ShipTo\": {\n                \"Id\": 163100002,\n                \"Addr1\": \"2525 W Main Street\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"Richmond \",\n                \"StateCode\": \"VA\",\n                \"ZipCode\": \"23220\",\n                \"Country\": \"\",\n                \"Phone\": \"(215) 249-2222\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"Department\": {},\n            \"Salesperson\": {\n                \"Id\": 14,\n                \"Code\": \"AD1\",\n                \"Name\": \"AD 1\"\n            },\n            \"Tax\": {\n                \"Id\": 2,\n                \"Code\": \"PA\",\n                \"Description\": \"PA Sales Tax\"\n            },\n            \"Terms\": {\n                \"Id\": 19,\n                \"Code\": \"19\",\n                \"Description\": \"Net 15\"\n            },\n            \"Warehouse\": {\n                \"Id\": 1,\n                \"Code\": \"WHSE\",\n                \"Name\": \"Warehouse\"\n            },\n            \"Ref\": \"\",\n            \"PO\": \"\",\n            \"PoDate\": null,\n            \"Route\": {},\n            \"StopNumber\": 0,\n            \"FOB\": \"\",\n            \"ShipMethod\": {\n                \"Id\": 7,\n                \"Code\": \"1030am1130am\",\n                \"Description\": \"10:30am~11:30am\"\n            },\n            \"PriceList\": {\n                \"Id\": 10,\n                \"Code\": \"general\",\n                \"Description\": \"General\"\n            },\n            \"SealNumber\": \"\",\n            \"Lines\": [\n                {\n                    \"Id\": 1,\n                    \"LineNo\": 1,\n                    \"Item\": {\n                        \"Id\": 41530001,\n                        \"Code\": \"00269\",\n                        \"Description\": \"FRESH BF/PEPPER STEAK 5#\"\n                    },\n                    \"LineDescription\": \"\",\n                    \"Quantity\": {\n                        \"Amount\": 1,\n                        \"UOM\": {\n                            \"Id\": 1,\n                            \"Name\": \"EA\",\n                            \"Description\": \"Each\"\n                        }\n                    },\n                    \"Price\": {\n                        \"Amount\": 0,\n                        \"UOM\": {\n                            \"Id\": 10,\n                            \"Name\": \"LB\",\n                            \"Description\": \"Pound\"\n                        }\n                    },\n                    \"Cost\": {\n                        \"Amount\": 2.99,\n                        \"UOM\": {\n                            \"Id\": 10,\n                            \"Name\": \"LB\",\n                            \"Description\": \"Pound\"\n                        }\n                    },\n                    \"CostOfGoodsSold\": {\n                        \"Amount\": 2.99,\n                        \"UOM\": {\n                            \"Id\": 10,\n                            \"Name\": \"LB\",\n                            \"Description\": \"Pound\"\n                        }\n                    },\n                    \"Brand\": {},\n                    \"Category\": {\n                        \"Id\": 3,\n                        \"Code\": \"BEEF\",\n                        \"Description\": \"BEEF\"\n                    },\n                    \"Warehouse\": {\n                        \"Id\": 1,\n                        \"Code\": \"WHSE\",\n                        \"Name\": \"Warehouse\"\n                    },\n                    \"Comment\": \"\",\n                    \"PickComment\": \"\",\n                    \"SpecialComment\": \"\",\n                    \"Discount1\": {\n                        \"Amount\": 0,\n                        \"Description\": \"\",\n                        \"Account\": {}\n                    },\n                    \"Discount2\": {\n                        \"Amount\": 0,\n                        \"Description\": \"\",\n                        \"Account\": {}\n                    },\n                    \"Discount3\": {\n                        \"Amount\": 0,\n                        \"Description\": \"\",\n                        \"Account\": {}\n                    },\n                    \"UpCharge\": 0,\n                    \"SalesAccount\": {\n                        \"Id\": 21,\n                        \"Name\": \"FC Wash Account\",\n                        \"Descrip\": \"FC Wash Account - \"\n                    }\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"0b01e086-c930-495b-ab06-089b5216ca80"},{"name":"List a specific line from an Order","event":[{"listen":"prerequest","script":{"id":"a9291dc8-4f59-4179-b938-4bcc75d7ccba","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"6cab38a7-90e4-4f61-ae16-c66874834722","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"f48a4e30-809c-44a9-9702-7072d5c787e6","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId/lines/:lineId","description":"<h3 id=\"get-order-line-details\">Get Order Line Details</h3>\n<p>This endpoint retrieves the details of a specific order line identified by the <code>orderId</code> and <code>lineId</code>.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId/lines/:lineId</code></p>\n</li>\n<li><p>Path Parameters:</p>\n<ul>\n<li><p><code>orderId</code> (string): The unique identifier of the order.</p>\n</li>\n<li><p><code>lineId</code> (string): The unique identifier of the order line.</p>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","orders",":orderId","lines",":lineId"],"host":["{{url}}"],"query":[],"variable":[{"id":"4874a7a2-ae24-402f-bf80-d2e4175a6a3a","type":"any","value":"{{orderId}}","key":"orderId"},{"id":"7f460761-479f-4827-9b84-7503d55e9b55","type":"any","value":"{{ordlineId}}","key":"lineId"}]}},"response":[],"_postman_id":"f48a4e30-809c-44a9-9702-7072d5c787e6"},{"name":"Add an Order","event":[{"listen":"test","script":{"id":"82493200-c15e-49ec-8dc6-e837d9545046","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","\r","    let responseData = pm.response.json();\r","\r","    pm.environment.set(\"newOrderId\", responseData.Id);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"356e9fa7-8f04-4bc3-8028-eab92b451869","exec":["if (pm.environment.id === \"environment/92a41002-53f0-4355-b341-c5fb13829318/65412da9-703c-4975-81bf-63cb40b88197\") {\r","    let customerId = parseInt(pm.environment.get(\"customerId\"), 10);\r","    let shiptoId = parseInt(pm.environment.get(\"shiptoId\"), 10);\r","    let itemId = parseInt(pm.environment.get(\"itemId\"), 10);\r","\r","    let requestBody = {\r","        \"ExternalId\": \"test api Order 1\",\r","        \"Customer\":{\r","            \"Id\": customerId\r","        },\r","        \"DateNeeded\": \"2024-10-30\",\r","        \"OrderDate\": \"2024-10-29\",\r","        \"PoNumber\": \"1234567890\",\r","        \"PrintedComments\": \"Test printed comments\",\r","        \"InternalComments\": \"This is the test of the internal comments\",\r","        \"PoDate\": \"2023-04-15\",\r","        \"ShipTo\": {\r","            \"Id\": shiptoId,\r","            \"Address\": {\r","                \"Line1\": \"API Line 1\",\r","                \"Line2\": \"API Line 2\",\r","                \"City\": \"Bristol\",\r","                \"State\": \"WA\",\r","                \"PostalCode\": \"19020-1541\",\r","                \"Country\": \"US\",\r","                \"Phone\": \"215-637-6696\"\r","            }\r","        },\r","        \"BillTo\": {\r","            \"Address\": {\r","                \"Line1\": \"Bill Line 1\",\r","                \"Line2\": \"Bill Line 2\",\r","                \"City\": \"Bill City\",\r","                \"State\": \"Bill State\",\r","                \"PostalCode\": \"11111\",\r","                \"Country\": \"Bill Country\",\r","                \"Phone\": \"999-999-9999\"\r","            }\r","        },\r","        \"Lines\":[\r","            {\r","                \"bId\": \"test bid\",\r","                \"Item\": {\r","                    \"Id\": itemId\r","                },\r","                \"Quantity\": 10,\r","                \"UOM\": {\r","                    \"Id\": 3\r","                }\r","            },\r","            {\r","                \"bId\": \"bid2\",\r","                \"Item\": {\r","                    \"Id\": itemId\r","                },\r","                \"Quantity\": 15,\r","                \"UOM\": {\r","                    \"Id\": 3\r","                }\r","            }\r","        ]\r","    }\r","\r","    pm.request.body.raw = JSON.stringify(requestBody);\r","}"],"type":"text/javascript","packages":{}}}],"id":"1bbfdfb8-2676-411f-a335-015a3e398d33","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ExternalId\": \"test api Order 1\",\r\n    \"Customer\":{\r\n        \"Id\":2363380001\r\n    },\r\n    \"DateNeeded\": \"2024-10-30\",\r\n    \"OrderDate\": \"2024-10-29\",\r\n    \"PoNumber\": \"1234567890\",\r\n    \"PrintedComments\": \"Test printed comments\",\r\n    \"InternalComments\": \"This is the test of the internal comments\",\r\n    \"PoDate\": \"2023-04-15\",\r\n    \"ShipTo\": {\r\n        \"Id\": 2,\r\n        \"Address\": {\r\n            \"Line1\": \"API Line 1\",\r\n            \"Line2\": \"API Line 2\",\r\n            \"City\": \"Bristol\",\r\n            \"State\": \"WA\",\r\n            \"PostalCode\": \"19020-1541\",\r\n            \"Country\": \"US\",\r\n            \"Phone\": \"215-637-6696\"\r\n        }\r\n    },\r\n    \"BillTo\": {\r\n        \"Address\": {\r\n            \"Line1\": \"Bill Line 1\",\r\n            \"Line2\": \"Bill Line 2\",\r\n            \"City\": \"Bill City\",\r\n            \"State\": \"Bill State\",\r\n            \"PostalCode\": \"11111\",\r\n            \"Country\": \"Bill Country\",\r\n            \"Phone\": \"999-999-9999\"\r\n        }\r\n    },\r\n    \"Lines\":[\r\n        {\r\n            \"bId\": \"test bid\",\r\n            \"Item\": {\r\n                \"Id\": 2148200001\r\n            },\r\n            \"Quantity\": 10,\r\n            \"UOM\": {\r\n                \"Id\": 3\r\n            },\r\n            \"ItemSpecs\":[\r\n                {\r\n                    \"Id\": 2148590001\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"bId\": \"bid2\",\r\n            \"Item\": {\r\n                \"Id\": 29590001\r\n            },\r\n            \"Quantity\": 15,\r\n            \"UOM\": {\r\n                \"Id\": 3\r\n            }\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders","description":"<p>This API endpoint is a POST request to create orders. The payload includes the ExternalId, Customer details, DateNeeded, OrderDate, PoNumber, PrintedComments, InternalComments, PoDate, ShipTo and BillTo addresses, and the order lines with their respective details.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: POST</p>\n</li>\n<li><p>URL: <code>https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders</code></p>\n</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li><p>ExternalId: (string) The external ID of the order.</p>\n</li>\n<li><p>Customer: (object) The details of the customer placing the order.</p>\n<ul>\n<li>Id: (number) The ID of the customer.</li>\n</ul>\n</li>\n<li><p>DateNeeded: (string) The date by which the order is needed.</p>\n</li>\n<li><p>OrderDate: (string) The date of the order.</p>\n</li>\n<li><p>PoNumber: (string) The purchase order number.</p>\n</li>\n<li><p>PrintedComments: (string) Comments for printing.</p>\n</li>\n<li><p>InternalComments: (string) Internal comments for the order.</p>\n</li>\n<li><p>PoDate: (string) The purchase order date.</p>\n</li>\n<li><p>ShipTo: (object) The shipping details for the order.</p>\n<ul>\n<li><p>Id: (number) The ID of the shipping address.</p>\n</li>\n<li><p>Address: (object) The address details.</p>\n<ul>\n<li><p>Line1: (string) Address line 1.</p>\n</li>\n<li><p>Line2: (string) Address line 2.</p>\n</li>\n<li><p>City: (string) City.</p>\n</li>\n<li><p>State: (string) State.</p>\n</li>\n<li><p>PostalCode: (string) Postal code.</p>\n</li>\n<li><p>Country: (string) Country.</p>\n</li>\n<li><p>Phone: (string) Phone number.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p>BillTo: (object) The billing details for the order.</p>\n<ul>\n<li><p>Address: (object) The address details.</p>\n<ul>\n<li><p>Line1: (string) Address line 1.</p>\n</li>\n<li><p>Line2: (string) Address line 2.</p>\n</li>\n<li><p>City: (string) City.</p>\n</li>\n<li><p>State: (string) State.</p>\n</li>\n<li><p>PostalCode: (string) Postal code.</p>\n</li>\n<li><p>Country: (string) Country.</p>\n</li>\n<li><p>Phone: (string) Phone number.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p>Lines: (array) The array of order lines.</p>\n<ul>\n<li><p>bId: (string) Batch ID. A user-defined identifier that is returned in the response.</p>\n</li>\n<li><p>Item: (object) The details of the item in the order line.</p>\n<ul>\n<li>Id: (number) The ID of the item.</li>\n</ul>\n</li>\n<li><p>Quantity: (number) The quantity of the item.</p>\n</li>\n<li><p>UOM: (object) The unit of measure for the item.</p>\n</li>\n<li><p>ItemSpecs: (array) The spec or specs of the item</p>\n<ul>\n<li>Id: (number) The ID of the spec</li>\n</ul>\n</li>\n<li><p>Comment: (string) General comment for the line item</p>\n</li>\n<li><p>PickComment: (string) Comment used during picking of the line item</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will provide the details of the created order and lines.</p>\n<p>The response will include each <code>bId</code> along with the result for the line item. If successful, the line object will be returned. If unsuccessful, an <code>Error</code> will be returned describing the issue.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","orders"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"431a8220-f0b5-43b3-9b39-a4f5064a877c","name":"Add an Order","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/xml","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"ExternalId\": \"test api Order 1\",\r\n    \"Customer\":{\r\n        \"Id\":2363380001\r\n    },\r\n    \"DateNeeded\": \"2024-10-30\",\r\n    \"OrderDate\": \"2024-10-29\",\r\n    \"PoNumber\": \"1234567890\",\r\n    \"PrintedComments\": \"Test printed comments\",\r\n    \"InternalComments\": \"This is the test of the internal comments\",\r\n    \"PoDate\": \"2023-04-15\",\r\n    \"ShipTo\": {\r\n        \"Id\": 2,\r\n        \"Address\": {\r\n            \"Line1\": \"API Line 1\",\r\n            \"Line2\": \"API Line 2\",\r\n            \"City\": \"Bristol\",\r\n            \"State\": \"WA\",\r\n            \"PostalCode\": \"19020-1541\",\r\n            \"Country\": \"US\",\r\n            \"Phone\": \"215-637-6696\"\r\n        }\r\n    },\r\n    \"BillTo\": {\r\n        \"Address\": {\r\n            \"Line1\": \"Bill Line 1\",\r\n            \"Line2\": \"Bill Line 2\",\r\n            \"City\": \"Bill City\",\r\n            \"State\": \"Bill State\",\r\n            \"PostalCode\": \"11111\",\r\n            \"Country\": \"Bill Country\",\r\n            \"Phone\": \"999-999-9999\"\r\n        }\r\n    },\r\n    \"Lines\":[\r\n        {\r\n            \"bId\": \"test bid\",\r\n            \"Item\": {\r\n                \"Id\": 2148200001\r\n            },\r\n            \"Quantity\": 10,\r\n            \"UOM\": {\r\n                \"Id\": 3\r\n            }\r\n        },\r\n        {\r\n            \"bId\": \"bid2\",\r\n            \"Item\": {\r\n                \"Id\": 29590001\r\n            },\r\n            \"Quantity\": 15,\r\n            \"UOM\": {\r\n                \"Id\": 3\r\n            }\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Mon, 04 Nov 2024 20:31:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=64B56A96A940297F39CB9DF959065CC0; Path=/vnsean; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Id\": 2800370003,\n    \"OrderNumber\": 2949,\n    \"Status\": \"Un-Submitted\",\n    \"PaymentType\": \"Charge\",\n    \"OrderDate\": \"2024-10-29\",\n    \"DateNeeded\": \"2024-11-04\",\n    \"Customer\": {\n        \"Id\": 2363380001,\n        \"Code\": \"00000ABCDE\",\n        \"Name\": \"Country Groceries Bait and Tackle.\"\n    },\n    \"Chain\": {},\n    \"BillTo\": {\n        \"Id\": 3566010003,\n        \"Addr1\": \"Bill Line 1\",\n        \"Addr2\": \"Bill Line 2\",\n        \"Addr3\": \"\",\n        \"Addr4\": \"\",\n        \"Addr5\": \"\",\n        \"City\": \"Bill City\",\n        \"StateCode\": \"Bill State\",\n        \"ZipCode\": \"11111\",\n        \"Country\": \"Bill Country\",\n        \"Phone\": \"999-999-9999\",\n        \"Fax\": \"\",\n        \"Note\": \"\"\n    },\n    \"ShipTo\": {\n        \"Id\": 3566020003,\n        \"Addr1\": \"API Line 1\",\n        \"Addr2\": \"API Line 2\",\n        \"Addr3\": \"\",\n        \"Addr4\": \"\",\n        \"Addr5\": \"\",\n        \"City\": \"Bristol\",\n        \"StateCode\": \"WA\",\n        \"ZipCode\": \"19020-1541\",\n        \"Country\": \"US\",\n        \"Phone\": \"215-637-6696\",\n        \"Fax\": \"\",\n        \"Note\": \"\"\n    },\n    \"Department\": {},\n    \"Salesperson\": {\n        \"Id\": 44,\n        \"Code\": \"BZ\",\n        \"Name\": \"Bob Zimmerman\"\n    },\n    \"Tax\": {},\n    \"Terms\": {\n        \"Id\": 13,\n        \"Code\": \"13\",\n        \"Description\": \"Due on receipt to the end of the line \"\n    },\n    \"Warehouse\": {\n        \"Id\": 1,\n        \"Code\": \"main\",\n        \"Name\": \"Main Warehouse\"\n    },\n    \"Ref\": \"\",\n    \"PO\": \"1234567890\",\n    \"PoDate\": \"2023-04-15\",\n    \"Route\": {},\n    \"StopNumber\": 0,\n    \"FOB\": \"\",\n    \"ShipMethod\": {},\n    \"PriceList\": {\n        \"Id\": 149,\n        \"Code\": \"AAA\",\n        \"Description\": \"Standard\"\n    },\n    \"SealNumber\": \"\",\n    \"Lines\": [\n        {\n            \"Id\": 1,\n            \"LineNo\": 1,\n            \"Item\": {\n                \"Id\": 2148200001,\n                \"Code\": \"00001\",\n                \"Description\": \"Nova Nox! 1/4\\\" Test\"\n            },\n            \"LineDescription\": \"\",\n            \"Quantity\": {\n                \"Amount\": 10,\n                \"UOM\": {\n                    \"Id\": 3,\n                    \"Name\": \"CS\",\n                    \"Description\": \"Case\"\n                }\n            },\n            \"Price\": {\n                \"Amount\": 2.9,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"Cost\": {\n                \"Amount\": 5.2807,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"CostOfGoodsSold\": {\n                \"Amount\": 7.7,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"Brand\": {\n                \"Id\": 22,\n                \"Code\": \"BH\",\n                \"Description\": \"Boars Head Meats\"\n            },\n            \"Category\": {\n                \"Id\": 58,\n                \"Code\": \"02\",\n                \"Description\": \"02 category\"\n            },\n            \"Warehouse\": {\n                \"Id\": 2,\n                \"Code\": \"28ths\",\n                \"Name\": \"28th Street Warehouse  \"\n            },\n            \"Comment\": \"\",\n            \"PickComment\": \"\",\n            \"SpecialComment\": \"this is a special order item that must be orders on Monday to be delivered on a Wednesday unless the Wednesday is the second week of the month, if so the delivery will be on thursday\",\n            \"Discount1\": {\n                \"Amount\": 0,\n                \"Description\": \"\",\n                \"Account\": {}\n            },\n            \"Discount2\": {\n                \"Amount\": 0,\n                \"Description\": \"\",\n                \"Account\": {}\n            },\n            \"Discount3\": {\n                \"Amount\": 0,\n                \"Description\": \"\",\n                \"Account\": {}\n            },\n            \"UpCharge\": 0,\n            \"SalesAccount\": {},\n            \"bId\": \"test bid\"\n        },\n        {\n            \"Id\": 2,\n            \"LineNo\": 2,\n            \"Item\": {\n                \"Id\": 29590001,\n                \"Code\": \"00002\",\n                \"Description\": \"Nova Spread - This is a long description\"\n            },\n            \"LineDescription\": \"\",\n            \"Quantity\": {\n                \"Amount\": 15,\n                \"UOM\": {\n                    \"Id\": 3,\n                    \"Name\": \"CS\",\n                    \"Description\": \"Case\"\n                }\n            },\n            \"Price\": {\n                \"Amount\": 2.8713,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"Cost\": {\n                \"Amount\": 5,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"CostOfGoodsSold\": {\n                \"Amount\": 1.99,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"Brand\": {\n                \"Id\": 3,\n                \"Code\": \"BeCr\",\n                \"Description\": \"Betty Crocker\"\n            },\n            \"Category\": {\n                \"Id\": 44,\n                \"Code\": \"222\",\n                \"Description\": \"two1\"\n            },\n            \"Warehouse\": {\n                \"Id\": 1,\n                \"Code\": \"main\",\n                \"Name\": \"Main Warehouse\"\n            },\n            \"Comment\": \"\",\n            \"PickComment\": \"\",\n            \"SpecialComment\": \"This is a comment about delivery\",\n            \"Discount1\": {\n                \"Amount\": 0,\n                \"Description\": \"\",\n                \"Account\": {}\n            },\n            \"Discount2\": {\n                \"Amount\": 0,\n                \"Description\": \"\",\n                \"Account\": {}\n            },\n            \"Discount3\": {\n                \"Amount\": 0,\n                \"Description\": \"\",\n                \"Account\": {}\n            },\n            \"UpCharge\": 0,\n            \"SalesAccount\": {},\n            \"bId\": \"bid2\"\n        }\n    ]\n}"}],"_postman_id":"1bbfdfb8-2676-411f-a335-015a3e398d33"},{"name":"Add an Order Line","event":[{"listen":"test","script":{"id":"514ac846-72d9-4093-a04d-3b2b05e6dfa7","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","\r","    let responseData = pm.response.json();\r","\r","    pm.environment.set(\"newOrdlineId\", responseData.Id);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"5f22df39-26fd-4497-adc2-425e9b4174d1","exec":["if (pm.environment.id === \"environment/92a41002-53f0-4355-b341-c5fb13829318/65412da9-703c-4975-81bf-63cb40b88197\") {\r","    let itemId = parseInt(pm.environment.get(\"itemId\"), 10);\r","\r","    let requestBody = {\r","        \"Item\": {\r","            \"Id\": itemId\r","        },\r","        \"Quantity\": 12,\r","        \"UOM\": {\r","            \"Id\": 3\r","        }\r","    };\r","\r","    pm.request.body.raw = JSON.stringify(requestBody);\r","}"],"type":"text/javascript","packages":{}}}],"id":"c67d8a9e-4dd7-4fd9-b9e1-6296c275f31e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Item\": {\r\n        \"Id\": 2148200001\r\n    },\r\n    \"Quantity\": 12,\r\n    \"UOM\": {\r\n        \"Id\": 3\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId/lines","description":"<h3 id=\"create-order-line\">Create Order Line</h3>\n<p>This endpoint allows the client to create a new order line for a specific order.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: POST</p>\n</li>\n<li><p>URL: <code>https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId/lines</code></p>\n</li>\n<li><p>Path Parameters:</p>\n<ul>\n<li><code>orderId</code> (string): The unique identifier of the order.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p>Item (object)</p>\n<ul>\n<li>Id (number): The ID of the item being ordered.</li>\n</ul>\n</li>\n<li><p>Quantity (number): The quantity of the item being ordered.</p>\n</li>\n<li><p>UOM (object): Unit of Measure for the Quantity Ordered</p>\n<ul>\n<li>Id (number): The ID of the unit of measure for the item.</li>\n</ul>\n</li>\n<li><p>ItemSpecs: (array) The spec or specs of the item</p>\n<ul>\n<li>Id: (number) The ID of the spec</li>\n</ul>\n</li>\n<li><p>Comment: (string) General comment for the line item</p>\n</li>\n<li><p>PickComment: (string) Comment used during picking of the line item</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","orders",":orderId","lines"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"{{newOrderId}}","key":"orderId"}]}},"response":[{"id":"4545830a-3a64-49fa-872c-bdafa0b106f7","name":"Add an Order Line","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/xml","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"Item\": {\r\n        \"Id\": 2148200001\r\n    },\r\n    \"Quantity\": 12,\r\n    \"UOM\": {\r\n        \"Id\": 3\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId/lines","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","orders",":orderId","lines"],"variable":[{"key":"orderId","value":"2800370003"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Mon, 04 Nov 2024 21:09:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=A576211E08A10026A76DF0D0600854F7; Path=/vnsean; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Id\": 3,\n    \"LineNo\": 3,\n    \"Item\": {\n        \"Id\": 2148200001,\n        \"Code\": \"00001\",\n        \"Description\": \"Nova Nox! 1/4\\\" Test\"\n    },\n    \"LineDescription\": \"\",\n    \"Quantity\": {\n        \"Amount\": 12,\n        \"UOM\": {\n            \"Id\": 3,\n            \"Name\": \"CS\",\n            \"Description\": \"Case\"\n        }\n    },\n    \"Price\": {\n        \"Amount\": 2.9,\n        \"UOM\": {\n            \"Id\": 10,\n            \"Name\": \"LB\",\n            \"Description\": \"Pound\"\n        }\n    },\n    \"Cost\": {\n        \"Amount\": 5.2807,\n        \"UOM\": {\n            \"Id\": 10,\n            \"Name\": \"LB\",\n            \"Description\": \"Pound\"\n        }\n    },\n    \"CostOfGoodsSold\": {\n        \"Amount\": 7.7,\n        \"UOM\": {\n            \"Id\": 10,\n            \"Name\": \"LB\",\n            \"Description\": \"Pound\"\n        }\n    },\n    \"Brand\": {\n        \"Id\": 22,\n        \"Code\": \"BH\",\n        \"Description\": \"Boars Head Meats\"\n    },\n    \"Category\": {\n        \"Id\": 58,\n        \"Code\": \"02\",\n        \"Description\": \"02 category\"\n    },\n    \"Warehouse\": {\n        \"Id\": 2,\n        \"Code\": \"28ths\",\n        \"Name\": \"28th Street Warehouse  \"\n    },\n    \"Comment\": \"\",\n    \"PickComment\": \"\",\n    \"SpecialComment\": \"this is a special order item that must be orders on Monday to be delivered on a Wednesday unless the Wednesday is the second week of the month, if so the delivery will be on thursday\",\n    \"Discount1\": {\n        \"Amount\": 0,\n        \"Description\": \"\",\n        \"Account\": {}\n    },\n    \"Discount2\": {\n        \"Amount\": 0,\n        \"Description\": \"\",\n        \"Account\": {}\n    },\n    \"Discount3\": {\n        \"Amount\": 0,\n        \"Description\": \"\",\n        \"Account\": {}\n    },\n    \"UpCharge\": 0,\n    \"SalesAccount\": {}\n}"}],"_postman_id":"c67d8a9e-4dd7-4fd9-b9e1-6296c275f31e"},{"name":"Delete an Order Line","event":[{"listen":"test","script":{"id":"e8200fce-b356-4438-a9d7-5ade1950f9f8","exec":["pm.test(\"Status code is 204\", function () {\r","    pm.response.to.have.status(204);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"fcc329d7-9c2f-4792-b726-d6678a3c145e","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"9f73d1a6-8ea2-4ac6-926a-a3f78fd7579e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"DELETE","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId/lines/:ordlineId","description":"<h3 id=\"delete-order-line\">Delete Order Line</h3>\n<p>This endpoint is used to delete a specific order line by providing the order ID and order line ID in the URL path.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: DELETE</p>\n</li>\n<li><p>URL: <code>https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId/lines/:ordlineId</code></p>\n</li>\n<li><p>Path Parameters:</p>\n<ul>\n<li><p><code>orderId</code> (string): The unique identifier of the order.</p>\n</li>\n<li><p><code>ordlineId</code> (string): The unique identifier of the order line.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>This request does not require a request body.</p>\n<h4 id=\"response\">Response</h4>\n<p>A successful response code is <code>204 No Content</code> indicating a successful request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","orders",":orderId","lines",":ordlineId"],"host":["{{url}}"],"query":[],"variable":[{"id":"9d89be9d-485f-4612-a796-61cbc8eba4a2","type":"any","value":"{{newOrderId}}","key":"orderId"},{"id":"ffc63a2b-0097-49ca-8056-843f57d2bfa2","type":"any","value":"{{newOrdlineId}}","key":"ordlineId"}]}},"response":[{"id":"3dcd842d-5e79-41ef-b71e-1d163dee4e29","name":"Delete an Order Line","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","orders",":orderId"],"variable":[{"key":"orderId","value":"{{newOrdlineId}}"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 05 Nov 2024 15:07:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=CF95D5FFED383CEF5E76736479CD5211; Path=/vnsean; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9f73d1a6-8ea2-4ac6-926a-a3f78fd7579e"},{"name":"Delete an Order","event":[{"listen":"prerequest","script":{"id":"b9959755-73e3-43f5-8527-821113dc716d","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"1d4fabbf-92f2-4353-96a5-ba7f32c1006b","exec":["pm.test(\"Status code is 204\", function () {\r","    pm.response.to.have.status(204);\r","});"],"type":"text/javascript","packages":{}}}],"id":"7738f82e-bb76-47fa-8ca5-baffd26a779d","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"DELETE","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId","description":"<h3 id=\"delete-order\">Delete Order</h3>\n<p>This endpoint is used to delete a specific order by providing the order ID.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: DELETE</p>\n</li>\n<li><p>URL: <code>https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId</code></p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response for this request is null.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>A successful response code is <code>204 No Content</code> indicating a successful request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","orders",":orderId"],"host":["{{url}}"],"query":[],"variable":[{"id":"e55d4857-6ee3-468e-a3be-a3334c52f050","type":"any","value":"{{newOrderId}}","key":"orderId"}]}},"response":[{"id":"ab462561-d900-40f8-8a79-9303ca50feb4","name":"Delete an Order","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/orders/:orderId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","orders",":orderId"],"variable":[{"key":"orderId","value":"{{newOrderId}}"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 05 Nov 2024 15:08:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=0FD6E71797F33A45EEAF79B514C44E56; Path=/vnsean; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7738f82e-bb76-47fa-8ca5-baffd26a779d"}],"id":"9d825ff3-d513-4188-a554-b40a25bf1462","_postman_id":"9d825ff3-d513-4188-a554-b40a25bf1462","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Prices","item":[{"name":"Get Prices","id":"838b8428-e95d-4f63-a887-5a21a22d80d5","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/prices?customerId={{customerId}}&quantity=5&quantityUomId=3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","prices"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required.</p>\n","type":"text/plain"},"key":"customerId","value":"{{customerId}}"},{"disabled":true,"description":{"content":"<p>Optional.</p>\n","type":"text/plain"},"key":"itemId","value":"{{itemId}}"},{"description":{"content":"<p>Required.</p>\n","type":"text/plain"},"key":"quantity","value":"5"},{"description":{"content":"<p>Required.</p>\n","type":"text/plain"},"key":"quantityUomId","value":"3"},{"disabled":true,"description":{"content":"<p>Optional.</p>\n","type":"text/plain"},"key":"date","value":""},{"disabled":true,"description":{"content":"<p>Optional.</p>\n","type":"text/plain"},"key":"specId","value":""},{"disabled":true,"description":{"content":"<p>Optional.</p>\n","type":"text/plain"},"key":"priceUomId","value":""}],"variable":[]}},"response":[{"id":"7db4f8b3-b396-4794-ba8f-a6189e4d1f47","name":"Get Prices","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/prices","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","prices"],"query":[{"key":"customerId","value":"{{customerId}}","description":"Required.","disabled":true},{"key":"itemId","value":"{{itemId}}","description":"Optional.","disabled":true},{"key":"quantity","value":"5","description":"Required.","disabled":true},{"key":"quantityUomId","value":"3","description":"Required.","disabled":true},{"key":"date","value":null,"description":"Optional.","disabled":true},{"key":"specId","value":"","description":"Optional.","disabled":true},{"key":"priceUomId","value":"","description":"Optional.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 07 Oct 2025 12:58:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"Prices\": [\n        {\n            \"Customer\": {\n                \"Id\": 2363380001,\n                \"Name\": \"Country Groceries Bait and Tackle.\",\n                \"Code\": \"00000ABCDE\"\n            },\n            \"Item\": {\n                \"Id\": 2148200001,\n                \"Code\": \"00001\",\n                \"Description\": \"Nova Nox! 1/4\\\" Test\"\n            },\n            \"Date\": \"2025-10-07\",\n            \"Quantity\": {\n                \"Amount\": 5,\n                \"UOM\": {\n                    \"Id\": 3,\n                    \"Name\": \"CS\",\n                    \"Description\": \"Case\"\n                }\n            },\n            \"Price\": {\n                \"Amount\": 2.9,\n                \"UOM\": {\n                    \"Id\": 10,\n                    \"Name\": \"LB\",\n                    \"Description\": \"Pound\"\n                }\n            },\n            \"ExtendedPrice\": 174\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"838b8428-e95d-4f63-a887-5a21a22d80d5"}],"id":"3ec131d6-afb4-4799-a12f-2c167e42abcb","_postman_id":"3ec131d6-afb4-4799-a12f-2c167e42abcb","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Reports","item":[{"name":"Sales Universal","event":[{"listen":"test","script":{"id":"a099baee-7173-4eef-aba1-d7a0ffddd813","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.reportTest();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"prerequest","script":{"id":"b4eabbaf-e2df-4466-b8c4-2a3d552c4f19","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.reportSetQueryParam('endingDate', '12/31/2025');\r","myTests.reportSetQueryParam('orderNo', 'true');"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"fc152d93-3a02-4f96-ba47-97bd27e21d25","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/reports?reportName=Sales Universal&startingDate=01/01/2022&endingDate=12/31/2023","description":"<p>Run the Sales Universal Export and return an excel file with the data that was selected to show.</p>\n<p>All display column parameters should have a boolean value (true/false) if provided.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","reports"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required.</p>\n","type":"text/plain"},"key":"reportName","value":"Sales Universal"},{"description":{"content":"<p>Required. Starting date for the invoice date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"startingDate","value":"01/01/2022"},{"description":{"content":"<p>Required. Ending date for the invoice date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"endingDate","value":"12/31/2023"},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of customer IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_customer_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of customer group IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_custgroup_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of customer type IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_custtype_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of customer chain IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_chain_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of salespeople IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_salesperson_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of Item IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_item_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of item category IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_category_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of vendor IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_vendor_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of brand IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_brand_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of warehouse IDs to restrict the invoice lines on the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_warehouse_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Valid Options:\n<code>Detail</code>,\n<code>Catch Detail</code>,\n<code>Summary by Invoice</code>,\n<code>Summary by Customer</code>,\n<code>Summary by Group</code>,\n<code>Summary by Customer Type</code>,\n<code>Summary by Chain</code>,\n<code>Summary by Salesperson</code>,\n<code>Summary by Item</code>,\n<code>Summary by Category</code>,\n<code>Summary by Vendor</code>,\n<code>Summary by Brand</code>, or\n<code>Summary by Route</code>\nDefualt: <code>Detail</code></p>\n","type":"text/plain"},"key":"reportType","value":""},{"disabled":true,"description":{"content":"<p>Conditionally Required. Data source. \nValid options \n<code>Posted Invoices Only</code>,\n<code>Unposted Invoices Only</code>, or \n<code>Posted and Unposted Invoices</code>.<br />Default: <code>Posted Invoices Only</code>\nIf 'sepearate' option is supplied than this is required and not set to Posted Invoices Only.</p>\n","type":"text/plain"},"key":"posted","value":""},{"disabled":true,"description":{"content":"<p>Optional. Separate the Invoice and Shipped quantities on Unposted Invoices.</p>\n","type":"text/plain"},"key":"separate","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display only lines that have been shorted. Default: <code>false</code></p>\n","type":"text/plain"},"key":"shortsOnly","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display credit lines only. Default: <code>false</code></p>\n","type":"text/plain"},"key":"creditsOnly","value":""},{"disabled":true,"description":{"content":"<p>Conditionally Required. AR Status\nValid Options:\n<code>All</code>,\n<code>Open</code>, or\n<code>Closed</code>\nDefault: <code>All</code>\nIf startingPaymentDate or endingPaymentDate is provided then this is required.</p>\n","type":"text/plain"},"key":"arStatus","value":""},{"disabled":true,"description":{"content":"<p>Conditionally Required. The FCC starting payment date for the AR. Only available if arStatus is set to Closed. Format: MM/DD/YYYY.\nIf endingPaymentDate is provided then this is required.</p>\n","type":"text/plain"},"key":"startingPaymentDate","value":""},{"disabled":true,"description":{"content":"<p>Conditionally Required. The FCC ending payment date for the AR. Only available if arStatus is set to Closed. Format: MM/DD/YYYY.\nIf startingPaymentDate is supplied then this is required.</p>\n","type":"text/plain"},"key":"endingPaymentDate","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Code column.</p>\n","type":"text/plain"},"key":"customerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Name column</p>\n","type":"text/plain"},"key":"customerName","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Ship To Name column.</p>\n","type":"text/plain"},"key":"shipToName","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer's chain code column.</p>\n","type":"text/plain"},"key":"chainCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer chain name column.</p>\n","type":"text/plain"},"key":"chainName","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer's billing address lines 1 and 2 columns.</p>\n","type":"text/plain"},"key":"customerAdd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice bill to city column.</p>\n","type":"text/plain"},"key":"billCity","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice bill to state column.</p>\n","type":"text/plain"},"key":"billState","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice bill to zip code column.</p>\n","type":"text/plain"},"key":"billZip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer's bill to phone number column.</p>\n","type":"text/plain"},"key":"customerPhone","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice ship to address lines 1 and 2 columns.</p>\n","type":"text/plain"},"key":"shipToAdd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice ship to city column.</p>\n","type":"text/plain"},"key":"shipToCity","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice ship to state column.</p>\n","type":"text/plain"},"key":"shipToState","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice ship to zip code column.</p>\n","type":"text/plain"},"key":"shipToZip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice ship to phone number column.</p>\n","type":"text/plain"},"key":"shipToPhone","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Group column.</p>\n","type":"text/plain"},"key":"customerGroup","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Type column.</p>\n","type":"text/plain"},"key":"customerType","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Number column.</p>\n","type":"text/plain"},"key":"invoiceNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Date column.</p>\n","type":"text/plain"},"key":"invoiceDate","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Number column.</p>\n","type":"text/plain"},"key":"orderNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display Salesperson Name column.</p>\n","type":"text/plain"},"key":"salespersonField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display Route Code column.</p>\n","type":"text/plain"},"key":"route","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice PO Number column.</p>\n","type":"text/plain"},"key":"poNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice PO Date column.</p>\n","type":"text/plain"},"key":"poDate","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Tax Code and Tax Description columns.</p>\n","type":"text/plain"},"key":"taxCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Code column.</p>\n","type":"text/plain"},"key":"itemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Description column.</p>\n","type":"text/plain"},"key":"descrip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Category Code column.</p>\n","type":"text/plain"},"key":"categoryField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Spec column.</p>\n","type":"text/plain"},"key":"specField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Brand Description column.</p>\n","type":"text/plain"},"key":"brandField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Vendor Name column.</p>\n","type":"text/plain"},"key":"vendorField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Return Reason Description column.</p>\n","type":"text/plain"},"key":"returnField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Warehouse Name column.</p>\n","type":"text/plain"},"key":"warehouseField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item's Minimum Order Quantity column.</p>\n","type":"text/plain"},"key":"minOrder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item's Reorder Quantity column.</p>\n","type":"text/plain"},"key":"reorderQty","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Manufacturer column.</p>\n","type":"text/plain"},"key":"manufacturer","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Manufacturer Item column.</p>\n","type":"text/plain"},"key":"manufItem","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Comment column.</p>\n","type":"text/plain"},"key":"comment","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Case UPC column</p>\n","type":"text/plain"},"key":"CSupc","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Each UPC column.</p>\n","type":"text/plain"},"key":"EAupc","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Weight UPC column.</p>\n","type":"text/plain"},"key":"LBupc","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item's Sub Category column.</p>\n","type":"text/plain"},"key":"subCat","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item's Secondary Sub Category column.</p>\n","type":"text/plain"},"key":"secondSubCat","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item's Species column.</p>\n","type":"text/plain"},"key":"species","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item's Pack Size column.</p>\n","type":"text/plain"},"key":"packSize","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Username column of user that created the invoice line.</p>\n","type":"text/plain"},"key":"lineCreateUser","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item's Externded Description column.</p>\n","type":"text/plain"},"key":"extendedDescrip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cases Ordered column.</p>\n","type":"text/plain"},"key":"CSord","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Eaches Ordered column.</p>\n","type":"text/plain"},"key":"EAord","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Weight Ordered column.</p>\n","type":"text/plain"},"key":"LBord","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cases Invoiced column.</p>\n","type":"text/plain"},"key":"CSinv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Eaches Invoiced column.</p>\n","type":"text/plain"},"key":"EAinv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Weight Invoiced column.</p>\n","type":"text/plain"},"key":"LBinv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cases Shorted column.</p>\n","type":"text/plain"},"key":"CSshort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Eaches Shorted column.</p>\n","type":"text/plain"},"key":"EAshort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Weight Shorted column.</p>\n","type":"text/plain"},"key":"LBshort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Price column.</p>\n","type":"text/plain"},"key":"price","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Promo column.</p>\n","type":"text/plain"},"key":"promo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Discount/Charges column.</p>\n","type":"text/plain"},"key":"lineDiscount","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Net Price column.</p>\n","type":"text/plain"},"key":"netPrice","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Price Ordered column.</p>\n","type":"text/plain"},"key":"extendPriceOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Price Shipped column.</p>\n","type":"text/plain"},"key":"extendPriceShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Price Invoiced column.</p>\n","type":"text/plain"},"key":"extendPriceInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Price Shorted column.</p>\n","type":"text/plain"},"key":"extendPriceShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"costExtentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the GP Dollars based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"costGPdollarsOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the GP Percent based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"costPercentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended COGS based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"cogsExtentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the COGS GP Dollars based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"cogsGPdollarsOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the COGS GP Percent based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"cogsPercentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended True Cost based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"trueExtentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the True Cost GP Dollars based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"trueGPdollarsOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the True Cost GP Percent based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"truePercentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Salesperson Cost based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"salespersonExtentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Salesperson Cost GP Dollars based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"salespersonGPdollarsOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Salesperson Cost GP Percent based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"salespersonPercentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Average Cost based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"averageExtentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Average Cost GP Dollars based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"averageGPdollarsOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Average Cost GP Percent based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"averagePercentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Invoice Cost based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"invoiceExtentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Cost GP Dollars based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"invoiceGPdollarsOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Cost GP Percent based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"invoicePercentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Market Cost based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"marketExtentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Market Cost GP Dollars based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"marketGPdollarsOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Market Cost GP Percent based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"marketPercentOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"costExtentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the GP Dollars based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"costGPdollarsShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the GP Percent based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"costPercentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended COGS based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"cogsExtentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the COGS GP Dollars based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"cogsGPdollarsShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the COGS GP Percent based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"cogsPercentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended True Cost based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"trueExtentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the True Cost GP Dollars based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"trueGPdollarsShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the True Cost GP Percent based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"truePercentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Salesperson Cost based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"salespersonExtentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Salesperson Cost GP Dollars based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"salespersonGPdollarsShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Salesperson Cost GP Percent based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"salespersonPercentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Average Cost based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"averageExtentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Average Cost GP Dollars based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"averageGPdollarsShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Average Cost GP Percent based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"averagePercentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Invoice Cost based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"invoiceExtentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Cost GP Dollars based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"invoiceGPdollarsShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Cost GP Percent based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"invoicePercentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Market Cost based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"marketExtentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Market Cost GP Dollars based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"marketGPdollarsShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Market Cost GP Percent based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"marketPercentShip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"costExtentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cost GP Dollars based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"costGPdollarsInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cost GP Percent based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"costPercentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended COGS based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"cogsExtentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the COGS GP Dollars based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"cogsGPdollarsInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the COGS GP Percent based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"cogsPercentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended True Cost based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"trueExtentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the True Cost GP Dollars based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"trueGPdollarsInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the True Cost GP Percent based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"truePercentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Salesperson Cost based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"salespersonExtentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Salesperson Cost GP Dollars based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"salespersonGPdollarsInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Salesperson Cost GP Percent based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"salespersonPercentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Average Cost based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"averageExtentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Average Cost GP Dollars based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"averageGPdollarsInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Average Cost GP Percent based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"averagePercentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Invoice Cost based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"invoiceExtentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Cost GP Dollars based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"invoiceGPdollarsInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Cost GP Percent based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"invoicePercentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Market Cost based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"marketExtentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Market Cost GP Dollars based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"marketGPdollarsInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Market Cost GP Percent based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"marketPercentInv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"costExtentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cost GP Dollars based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"costGPdollarsShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cost GP Percent based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"costPercentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended COGS based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"cogsExtentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the COGS GP Dollars based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"cogsGPdollarsShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the COGS GP Percent based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"cogsPercentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended True Cost based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"trueExtentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the True Cost GP Dollars based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"trueGPdollarsShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the True Cost GP Percent based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"truePercentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Salesperson Cost based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"salespersonExtentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Salesperson Cost GP Dollars based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"salespersonGPdollarsShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Salesperson Cost GP Percent based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"salespersonPercentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Average Cost based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"averageExtentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Average Cost GP Dollars based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"averageGPdollarsShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Average Cost GP Percent based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"averagePercentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Invoice Cost based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"invoiceExtentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Cost GP Dollars based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"invoiceGPdollarsShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Cost GP Percent based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"invoicePercentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Market Cost based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"marketExtentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Market Cost GP Dollars based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"marketGPdollarsShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Market Cost GP Percent based on Shorted Quantity column.</p>\n","type":"text/plain"},"key":"marketPercentShort","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Addon Fuel column.</p>\n","type":"text/plain"},"key":"proratedFuel","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Addon Freight column.</p>\n","type":"text/plain"},"key":"proratedFreight","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Addon Misc and Addon Footer columns.</p>\n","type":"text/plain"},"key":"proratedMisc","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Addon Discount column.</p>\n","type":"text/plain"},"key":"proratedDiscount","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Tax Amount column.</p>\n","type":"text/plain"},"key":"taxAmount","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Addon Cost Charge column.</p>\n","type":"text/plain"},"key":"proratedChargeCost","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Username of user that created an order column and the create date/time column.</p>\n","type":"text/plain"},"key":"createUser","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the AR Status column and possibly FC Paid Date column.</p>\n","type":"text/plain"},"key":"status","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the AR Balance column.</p>\n","type":"text/plain"},"key":"balance","value":""}],"variable":[]}},"response":[],"_postman_id":"fc152d93-3a02-4f96-ba47-97bd27e21d25"},{"name":"Universal Inventory","event":[{"listen":"test","script":{"id":"cca6f321-346f-44c0-a01b-dc718ca3c480","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.reportTest();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"prerequest","script":{"id":"b4d13f49-bd31-4565-acfe-fe9ccf7bb0a7","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.reportSetQueryParam('endingDate1', '12/31/2025');\r","myTests.reportSetQueryParam('endingDate2', '12/31/2025');\r","myTests.reportSetQueryParam('source', 'true');\r","myTests.reportSetQueryParam('sourceId', 'true');"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"213df727-b345-4548-b900-d69924532772","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/reports?reportName=Universal Inventory&startingDate1=01/01/2020&endingDate1=12/31/2024&startingDate2=01/01/2020&endingDate2=12/31/2024","description":"<p>Run the Universal Inventory Export and return an excel file with the data that was selected to show.</p>\n<p>All display column parameters should have a boolean value (true/false) if provided.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","reports"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required.</p>\n","type":"text/plain"},"key":"reportName","value":"Universal Inventory"},{"description":{"content":"<p>Required. Starting date for the Transaction date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"startingDate1","value":"01/01/2020"},{"description":{"content":"<p>Required. Ending date for the Transaction date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"endingDate1","value":"12/31/2024"},{"description":{"content":"<p>Required. Starting date for the Expected date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"startingDate2","value":"01/01/2020"},{"description":{"content":"<p>Required. Ending date for the Expected date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"endingDate2","value":"12/31/2024"},{"disabled":true,"description":{"content":"<p>Optional. Include blank dates in the Expected Date Selection.</p>\n","type":"text/plain"},"key":"includeBlank","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of Transactions Types to include on the report.\nValid Options: <code>Adj</code> for Inventory Adjustment, <code>Po</code> for Purchase Order, <code>Rec</code> for Inventory Receipts, <code>Tran</code> for Transfer, <code>WorkOrder</code> for Work Order.\nWill show all if left blank or not supplied.</p>\n","type":"text/plain"},"key":"ms_transType_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of vendor IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_vendor_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of warehouse IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_warehouse_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of Transaction Statuses to include. Valid Options: <code>C</code> for Closed, <code>N</code> for New, <code>P</code> for Partial, <code>R</code> for Received.\nWill show all if left blank or not supplied.</p>\n","type":"text/plain"},"key":"ms_valuelist_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of Item IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_item_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of item category IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_category_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of item vendor IDS to restrict the report to. Will show all if left blank or not supplied.</p>\n","type":"text/plain"},"key":"ms_itemVendor_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of brand IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_brand_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of warehouse IDs to restrict the line items on the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_warehouseLine_id","value":""},{"disabled":true,"description":{"content":"<p>Conditionally Required. Starting Transation Number range. If endingTransNo is supplied then required. Will show all if not supplied.</p>\n","type":"text/plain"},"key":"startingTransNo","value":""},{"disabled":true,"description":{"content":"<p>Conditionally Required. Ending Transaction Number range. If startingTransNo is supplied then Required. Will show all if not supplied.</p>\n","type":"text/plain"},"key":"endingTransNo","value":""},{"disabled":true,"description":{"content":"<p>Conditionally Required. Starting PO Number range. If endingPoNo is supplied then required. Will show all if not supplied.</p>\n","type":"text/plain"},"key":"startingPoNo","value":""},{"disabled":true,"description":{"content":"<p>Conditionally Required. Ending PO Number range. If startingPoNo is supplied then Required. Will show all if not supplied.</p>\n","type":"text/plain"},"key":"endingPoNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Starting AP Invoice Number. Will show all if not supplied.</p>\n","type":"text/plain"},"key":"startingApInvoiceNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Valid Options: <code>Header</code> for line per transaction, <code>Line</code> for line per line, <code>Catch</code> for line per catch weight box entry. Default: <code>Header</code></p>\n","type":"text/plain"},"key":"reportType","value":""},{"disabled":true,"description":{"content":"<p>Optional. Print Lot Attributes and Answers. If selected reportType needs to be set to <code>Catch</code>.</p>\n","type":"text/plain"},"key":"printTrace","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the header source column.</p>\n","type":"text/plain"},"key":"source","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Header Transaction Number column.</p>\n","type":"text/plain"},"key":"sourceId","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Transaction Date column.</p>\n","type":"text/plain"},"key":"transactionDate","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Header Expected Date column.</p>\n","type":"text/plain"},"key":"expectedDate","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Username that entered the transaction column.</p>\n","type":"text/plain"},"key":"user","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Freight Amount column.</p>\n","type":"text/plain"},"key":"freight","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Freight Type column.</p>\n","type":"text/plain"},"key":"freightType","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the PO Number column.</p>\n","type":"text/plain"},"key":"poNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Status column.</p>\n","type":"text/plain"},"key":"poStat","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the AP Invoice Number column.</p>\n","type":"text/plain"},"key":"apInvoiceNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the PO Comment column.</p>\n","type":"text/plain"},"key":"comment","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Delivery column.</p>\n","type":"text/plain"},"key":"shipvia","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Terms column.</p>\n","type":"text/plain"},"key":"salesterms","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Post Info column.</p>\n","type":"text/plain"},"key":"postInfo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Template Code column.</p>\n","type":"text/plain"},"key":"templateCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Template Description column.</p>\n","type":"text/plain"},"key":"templateDescrip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Needed Date column.</p>\n","type":"text/plain"},"key":"dateNeeded","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Warehouse Code column.</p>\n","type":"text/plain"},"key":"warehouseCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Warehouse Name column.</p>\n","type":"text/plain"},"key":"warehouseName","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Warehouse Phone Number column.</p>\n","type":"text/plain"},"key":"warehousePhone","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Warehouse Fax Number column.</p>\n","type":"text/plain"},"key":"warehouseFax","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Warehouse Address Line 1 column.</p>\n","type":"text/plain"},"key":"warehouseAddr1","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Warehouse Address Line 2 column.</p>\n","type":"text/plain"},"key":"warehouseAddr2","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Warehouse City column.</p>\n","type":"text/plain"},"key":"warehouseCity","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Warehouse State Column.</p>\n","type":"text/plain"},"key":"warehouseState","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Warehouse Zip Code column.</p>\n","type":"text/plain"},"key":"warehouseZip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Vendor Code column.</p>\n","type":"text/plain"},"key":"vendorCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Vendor Name column.</p>\n","type":"text/plain"},"key":"vendorName","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Vendor Phone Number column.</p>\n","type":"text/plain"},"key":"vendorPhone","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Vendor Fax Number column.</p>\n","type":"text/plain"},"key":"vendorFax","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Vendor Address Line 1 column.</p>\n","type":"text/plain"},"key":"vendorAddr1","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Vendor Address Line 2 column.</p>\n","type":"text/plain"},"key":"vendorAddr2","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Vendor City column.</p>\n","type":"text/plain"},"key":"vendorCity","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Vendor State column.</p>\n","type":"text/plain"},"key":"vendorState","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Vendor Zip Code column.</p>\n","type":"text/plain"},"key":"vendorZip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Ordered Cases column.</p>\n","type":"text/plain"},"key":"totalOrderCases","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Ordered Weight column.</p>\n","type":"text/plain"},"key":"totalOrderWgt","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Ordered Freight column.</p>\n","type":"text/plain"},"key":"totalOrderFreight","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Ordered column.</p>\n","type":"text/plain"},"key":"totalOrder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Received Cases column.</p>\n","type":"text/plain"},"key":"totalReceiveCases","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Received Weight column.</p>\n","type":"text/plain"},"key":"totalReceiveWgt","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Received Freight column.</p>\n","type":"text/plain"},"key":"totalReceiveFreight","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Received column.</p>\n","type":"text/plain"},"key":"totalReceive","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Lines column.</p>\n","type":"text/plain"},"key":"totalLines","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Number column.</p>\n","type":"text/plain"},"key":"lineNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Warehouse column.</p>\n","type":"text/plain"},"key":"lineWarehouse","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Return Reason column.</p>\n","type":"text/plain"},"key":"returnReason","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Freight column.</p>\n","type":"text/plain"},"key":"lineFreight","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Other Costs column.</p>\n","type":"text/plain"},"key":"additionalCosts","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Code column.</p>\n","type":"text/plain"},"key":"itemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Description column.</p>\n","type":"text/plain"},"key":"descrip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Category column.</p>\n","type":"text/plain"},"key":"categoryField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Brand column.</p>\n","type":"text/plain"},"key":"brandField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Vendor column.</p>\n","type":"text/plain"},"key":"vendorField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item's Vendor Item Code column.</p>\n","type":"text/plain"},"key":"vendorItem","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Comment column.</p>\n","type":"text/plain"},"key":"itemComment","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Pick Location column.</p>\n","type":"text/plain"},"key":"location","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Slot column.</p>\n","type":"text/plain"},"key":"slot","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cost column.</p>\n","type":"text/plain"},"key":"cost","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost Ordered column.</p>\n","type":"text/plain"},"key":"extendedCostOrd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost Received column.</p>\n","type":"text/plain"},"key":"extendedCostRec","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost Left column.</p>\n","type":"text/plain"},"key":"extendedCostLeft","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Catch Box Sequence Number column.</p>\n","type":"text/plain"},"key":"iclineitemSeqNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Catch Box Lot Number column.</p>\n","type":"text/plain"},"key":"iclineitemLotId","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Catch Box Quantity column.</p>\n","type":"text/plain"},"key":"iclineitemQty","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Catch Box Weight column.</p>\n","type":"text/plain"},"key":"iclineitemWeight","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Catch Box Serial Number column.</p>\n","type":"text/plain"},"key":"iclineitemSerialNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Catch Box Date column.</p>\n","type":"text/plain"},"key":"iclineitemDate","value":""}],"variable":[]}},"response":[],"_postman_id":"213df727-b345-4548-b900-d69924532772"},{"name":"Recall Lot","event":[{"listen":"test","script":{"id":"7f25a14b-47d0-4fec-9628-4b55ac7deb3a","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.reportTest();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"prerequest","script":{"id":"cfb1f287-5724-41fb-85f0-fecf69e3eac9","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.reportSetQueryParam('endingDate1', '12/31/2025');\r","myTests.reportSetQueryParam('endingDate2', '12/31/2025');"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"d70f5eed-ba53-4cd3-a044-93b1dd286b2c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/reports?reportName=Recall Lot&startingDate1=01/01/2001&endingDate1=12/31/2023&startingDate2=01/01/2001&endingDate2=12/31/2023","description":"<p>Run the Recall Lot Report and return an excel file with the data that was selected to show.</p>\n<p>All display column parameters should have a boolean value (true/false) if provided.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","reports"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required.</p>\n","type":"text/plain"},"key":"reportName","value":"Recall Lot"},{"description":{"content":"<p>Required. Starting date for the Invoice date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"startingDate1","value":"01/01/2001"},{"description":{"content":"<p>Required. Ending date for the Invoice date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"endingDate1","value":"12/31/2023"},{"description":{"content":"<p>Required. Starting date for the Order date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"startingDate2","value":"01/01/2001"},{"description":{"content":"<p>Required. Ending date for the Order date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"endingDate2","value":"12/31/2023"},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of customer IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_customer_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of item category IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_category_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of brand IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_brand_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of Item IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_item_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of vendor IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_vendor_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Lot Number to Restrict the report to</p>\n","type":"text/plain"},"key":"lotId","value":""},{"disabled":true,"description":{"content":"<p>Optional. Include Non Lot Items in report.</p>\n","type":"text/plain"},"key":"includeAll","value":""},{"disabled":true,"description":{"content":"<p>Optional. Print Lot Attributes and Answers.</p>\n","type":"text/plain"},"key":"printTrace","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Code column.</p>\n","type":"text/plain"},"key":"customerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Name column.</p>\n","type":"text/plain"},"key":"customerName","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Ship To Name column.</p>\n","type":"text/plain"},"key":"shipToName","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Chain Code column.</p>\n","type":"text/plain"},"key":"chainCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Chain Name column.</p>\n","type":"text/plain"},"key":"chainName","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Bill To Address Line columns.</p>\n","type":"text/plain"},"key":"customerAdd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Bill To City column.</p>\n","type":"text/plain"},"key":"billCity","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Bill To State column.</p>\n","type":"text/plain"},"key":"billState","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Bill To Zip column.</p>\n","type":"text/plain"},"key":"billZip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Phone Number column.</p>\n","type":"text/plain"},"key":"customerPhone","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Ship To Address Line columns.</p>\n","type":"text/plain"},"key":"shipToAdd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Ship To City column.</p>\n","type":"text/plain"},"key":"shipToCity","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Ship To State column.</p>\n","type":"text/plain"},"key":"shipToState","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Ship To Zip column.</p>\n","type":"text/plain"},"key":"shipToZip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Ship To Phone Number column.</p>\n","type":"text/plain"},"key":"shipToPhone","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Group column.</p>\n","type":"text/plain"},"key":"customerGroup","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Type column.</p>\n","type":"text/plain"},"key":"customerType","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Number column.</p>\n","type":"text/plain"},"key":"invoiceNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Date column.</p>\n","type":"text/plain"},"key":"invoiceDate","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Number column.</p>\n","type":"text/plain"},"key":"orderNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Salesperson column.</p>\n","type":"text/plain"},"key":"salespersonField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Route column.</p>\n","type":"text/plain"},"key":"Route","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Order Date column.</p>\n","type":"text/plain"},"key":"orderDate","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Code column.</p>\n","type":"text/plain"},"key":"itemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Description column.</p>\n","type":"text/plain"},"key":"descrip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Category column.</p>\n","type":"text/plain"},"key":"categoryField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Brand column.</p>\n","type":"text/plain"},"key":"brandField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item's Primary Vendor column.</p>\n","type":"text/plain"},"key":"vendorField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Return Reason column.</p>\n","type":"text/plain"},"key":"returnField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Warehouse column.</p>\n","type":"text/plain"},"key":"warehouseField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Quantity and UOM columns.</p>\n","type":"text/plain"},"key":"cases","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Price column.</p>\n","type":"text/plain"},"key":"price","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Promo column.</p>\n","type":"text/plain"},"key":"promo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Discount column.</p>\n","type":"text/plain"},"key":"lineDiscount","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Net Price column.</p>\n","type":"text/plain"},"key":"netPrice","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Price column.</p>\n","type":"text/plain"},"key":"extendPrice","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost column.</p>\n","type":"text/plain"},"key":"extendCost","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the GP Dollars column.</p>\n","type":"text/plain"},"key":"gpDollars","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the GP Percent column.</p>\n","type":"text/plain"},"key":"gpPercent","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Sales Cost column.</p>\n","type":"text/plain"},"key":"cost","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cost of Goods Sold column.</p>\n","type":"text/plain"},"key":"cogs","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the True Cost column.</p>\n","type":"text/plain"},"key":"trueCost","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Salesperson Cost column.</p>\n","type":"text/plain"},"key":"salesperonCost","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Average Cost column.</p>\n","type":"text/plain"},"key":"averageCost","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Invoice Cost column.</p>\n","type":"text/plain"},"key":"invoiceCost","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Market Cost column.</p>\n","type":"text/plain"},"key":"marketCost","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Fifo Cost column.</p>\n","type":"text/plain"},"key":"fifoCost","value":""}],"variable":[]}},"response":[],"_postman_id":"d70f5eed-ba53-4cd3-a044-93b1dd286b2c"},{"name":"Date Based Availability","event":[{"listen":"test","script":{"id":"de1f62b4-70f3-4fa4-acc5-4b6020f17f64","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.reportTest();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"prerequest","script":{"id":"9ec78bd4-6a71-4ed9-a1d9-5c3676d8d332","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.reportSetQueryParam('endingDate', '01/25/2025');\r","myTests.reportSetQueryParam('itemCode', 'true');"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"b9207b4b-960f-4fe1-b580-452ccb3140f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/reports?reportName=Date Based Availability&endingDate=01/25/2023","description":"<p>Run the Date Based Availability Report and return an excel file with the data that was selected to show.</p>\n<p>All display column parameters should have a boolean value (true/false) if provided.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","reports"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required.</p>\n","type":"text/plain"},"key":"reportName","value":"Date Based Availability"},{"description":{"content":"<p>Required. Transacions up to this date will be considered for the Date Based Availability calculation. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"endingDate","value":"01/25/2023"},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of Item IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_item_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of vendor IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_vendor_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of warehouse IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_warehouse_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of item category IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_category_id","value":""},{"disabled":true,"description":{"content":"<p>Conditionally Required. If set to <code>true</code> will show all ABC codes on the report. If using the options startingAbcCode or endingAbcCode then this is required should be set to <code>false</code>. Default: <code>true</code></p>\n","type":"text/plain"},"key":"allAbcCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Starting range of ABC codes to restrict report to.</p>\n","type":"text/plain"},"key":"startingAbcCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Ending range of ABC codes to restric the report to.</p>\n","type":"text/plain"},"key":"endingAbcCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Only display negative availability on the report.</p>\n","type":"text/plain"},"key":"negativeOnly","value":""},{"disabled":true,"description":{"content":"<p>Optional. Exclude items with zero availability on the report.</p>\n","type":"text/plain"},"key":"excludeZeroAvail","value":""},{"disabled":true,"description":{"content":"<p>Conditionally Required. Exclude items with no activity on the report. Required if includeStockAsActivity is supplied.</p>\n","type":"text/plain"},"key":"excludeNoActivity","value":""},{"disabled":true,"description":{"content":"<p>Optional. </p>\n","type":"text/plain"},"key":"includeStockAsActivity","value":""},{"disabled":true,"description":{"content":"<p>Optional. \nValid Options: <code>Summary per Day</code>, or <code>Detail</code>\nDefault: <code>Summary per Day</code></p>\n","type":"text/plain"},"key":"reportType","value":""},{"disabled":true,"description":{"content":"<p>Optional. Include Customer and Vendor information on the report.</p>\n","type":"text/plain"},"key":"printCustomerVendorInfo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Header Expected or Needed Date.</p>\n","type":"text/plain"},"key":"printHeaderDate","value":""},{"disabled":true,"description":{"content":"<p>Optional. Remove the selection criteria from the report.</p>\n","type":"text/plain"},"key":"hideHeader","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Code column.</p>\n","type":"text/plain"},"key":"itemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Descrip column. (Item Description)</p>\n","type":"text/plain"},"key":"descrip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Warehouse Code column.</p>\n","type":"text/plain"},"key":"warehouseField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Vendor column.</p>\n","type":"text/plain"},"key":"vendorField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Category column.</p>\n","type":"text/plain"},"key":"categoryField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Date column. (Transaction Date)</p>\n","type":"text/plain"},"key":"transDate","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Remaining Available and Uom columns.</p>\n","type":"text/plain"},"key":"remaining","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Remaining Available Weight column.</p>\n","type":"text/plain"},"key":"remainingWgt","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Need/Exp Date column.</p>\n","type":"text/plain"},"key":"dateNeeded","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Trans Type column.</p>\n","type":"text/plain"},"key":"source","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Trans No column.</p>\n","type":"text/plain"},"key":"sourceId","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cust or Vend column.</p>\n","type":"text/plain"},"key":"customerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Name column.</p>\n","type":"text/plain"},"key":"name","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Phone column.</p>\n","type":"text/plain"},"key":"phone","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Contact column.</p>\n","type":"text/plain"},"key":"contact","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Email column.</p>\n","type":"text/plain"},"key":"email","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Qty Needed column.</p>\n","type":"text/plain"},"key":"qtyNeeded","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Qty Needed Weight column.</p>\n","type":"text/plain"},"key":"wgtNeeded","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Qty Expected column.</p>\n","type":"text/plain"},"key":"qtyExpected","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Qty Expected Weight column.</p>\n","type":"text/plain"},"key":"wgtExpected","value":""}],"variable":[]}},"response":[],"_postman_id":"b9207b4b-960f-4fe1-b580-452ccb3140f1"},{"name":"Inventory Movement","event":[{"listen":"test","script":{"id":"166f658f-82db-4469-b58c-716a73832616","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.reportTest();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"prerequest","script":{"id":"1f72c60f-bfee-443e-abce-c0029514a63b","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.reportSetQueryParam('endingDate', '1/25/2025')"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"282b86d5-24b2-4794-80fc-a57dbfdbcd02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/reports?reportName=Inventory Movement&startingDate=1/1/2022&endingDate=1/25/2023","description":"<p>Run the Inventory Movement Report and return an excel file with the data that was selected to show.</p>\n<p>All display column parameters should have a boolean value (true/false) if provided.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","reports"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required.</p>\n","type":"text/plain"},"key":"reportName","value":"Inventory Movement"},{"description":{"content":"<p>Required. Starting date for the Transaction date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"startingDate","value":"1/1/2022"},{"description":{"content":"<p>Required. Ending date for the Transaction date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"endingDate","value":"1/25/2023"},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of warehouse IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_warehouse_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of item category IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_category_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of Primary Item Vendor IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_primaryVendor_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of Item IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_item_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of Transaction Vendor IDs to  to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_vendor_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of Transactions Types to include on the report.\nValid Options: \n<code>Adj</code> for Inventory Adjustment, \n<code>Phys</code> for Physical Inventory,\n<code>Po</code> for Purchase Order, \n<code>Prod</code> for Production Import,\n<code>Rec</code> for Inventory Receipts, \n<code>Sold</code> for Inventory Sales, \n<code>Tran+</code> for Transfer In,\n<code>Tran</code> for Transfer Out, \n<code>Wo</code> for Work Order.\nWill show all if left blank or not supplied.</p>\n","type":"text/plain"},"key":"ms_valuelist_id","value":""},{"disabled":true,"description":{"content":"<p>Conditionally Required. If set to <code>true</code> will show all ABC codes on the report. If using the options startingAbcCode or endingAbcCode then this is required should be set to <code>false</code>. Default: <code>true</code></p>\n","type":"text/plain"},"key":"allAbcCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Starting range of ABC codes to restrict report to.</p>\n","type":"text/plain"},"key":"startingAbcCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Ending range of ABC codes to restric the report to.</p>\n","type":"text/plain"},"key":"endingAbcCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Determines how the report should be sorted. \nValid Options:\n<code>Item / TransType</code>,\n<code>Item / Posted Sequence</code>,\n<code>Category / TransType</code>,\n<code>Category / Posted Sequence</code></p>\n","type":"text/plain"},"key":"sortby","value":""},{"disabled":true,"description":{"content":"<p>Optional. Exclude returns not returned to stock.</p>\n","type":"text/plain"},"key":"excludeNotReturnedToStock","value":""},{"disabled":true,"description":{"content":"<p>Optional. Include Unposted Transactions.</p>\n","type":"text/plain"},"key":"includeUnposted","value":""},{"disabled":true,"description":{"content":"<p>Optional. Print the Original UOM.</p>\n","type":"text/plain"},"key":"originalUom","value":""}],"variable":[]}},"response":[],"_postman_id":"282b86d5-24b2-4794-80fc-a57dbfdbcd02"},{"name":"Open Order","event":[{"listen":"test","script":{"id":"90c22ad8-18ad-4ec5-a34e-69edf78d8a96","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.reportTest();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"prerequest","script":{"id":"746e79af-f5df-4224-8da4-f5ce1c956eed","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.reportSetQueryParam('orderNo', 'true');"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}}],"id":"f648499d-1525-4685-9915-d3bd7ade74ad","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/reports?reportName=Open Order&startingDate=1/1/2022&endingDate=12/31/2024&startingDateNeeded=1/1/2022&endingDateNeeded=12/31/2024&startingOrderNo=1&endingOrderNo=99999999","description":"<p>Run the Open Order Export and return an excel file with the data that was selected to show.</p>\n<p>Left Quantity refers to the remaining quantity ordered minus the shipped and invoiced quantities.</p>\n<p>All display column parameters should have a boolean value (true/false) if provided.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","reports"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required.</p>\n","type":"text/plain"},"key":"reportName","value":"Open Order"},{"description":{"content":"<p>Required. Starting date for the Order date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"startingDate","value":"1/1/2022"},{"description":{"content":"<p>Required. Ending date for the Order date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"endingDate","value":"12/31/2024"},{"description":{"content":"<p>Required. Starting date for the Needed date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"startingDateNeeded","value":"1/1/2022"},{"description":{"content":"<p>Required. Ending date for the Needed date range. Format: MM/DD/YYYY</p>\n","type":"text/plain"},"key":"endingDateNeeded","value":"12/31/2024"},{"description":{"content":"<p>Required. Starting Order Number range.</p>\n","type":"text/plain"},"key":"startingOrderNo","value":"1"},{"description":{"content":"<p>Required. Ending Order Number range.</p>\n","type":"text/plain"},"key":"endingOrderNo","value":"99999999"},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of customer IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_customer_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of customer chain IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_chain_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of customer group IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_custgroup_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of customer type IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_custtype_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of salespeople IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_salesperson_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of route IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_route_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of Order Statuses to include. \nValid Options: \n<code>H</code> for Hold,\n<code>I</code> for Invoiced,\n<code>N</code> for New,\n<code>P</code> for Partial,\n<code>R</code> for Ready to Invoice,\n<code>T</code> for Ticketed,\n<code>U</code> for Un-Submitted\nWill show all if left blank or not supplied.</p>\n","type":"text/plain"},"key":"ms_valuelist_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of Item IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_item_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of item category IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_category_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of vendor IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_vendor_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of brand IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_brand_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of warehouse IDs to restrict the order lines on the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_warehouse_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Tilde (~) separated list of pick location IDs to restrict the report to. Will show all if blank or not supplied</p>\n","type":"text/plain"},"key":"ms_location_id","value":""},{"disabled":true,"description":{"content":"<p>Optional. Include/Exclude based on Delivery Minimum.\nValid Options:\n<code>All</code> for Include Add,\n<code>Below</code> for Include Ordered Quantity Below Minimum,\n<code>Exclude</code> for Exclude Ordered Quantity Below Minimum.\nDefault: <code>All</code></p>\n","type":"text/plain"},"key":"deliveryMinimum","value":""},{"disabled":true,"description":{"content":"<p>Optional. Exclude Intangible Items.</p>\n","type":"text/plain"},"key":"excludeIntangible","value":""},{"disabled":true,"description":{"content":"<p>Optional. Exclude Quotes Orders.</p>\n","type":"text/plain"},"key":"excludeQuote","value":""},{"disabled":true,"description":{"content":"<p>Optional. Include negative quantity ordered lines.</p>\n","type":"text/plain"},"key":"includeNegatives","value":""},{"disabled":true,"description":{"content":"<p>Optional. \nValid Options:\n<code>Detail</code>,\n<code>Lot Allocation</code>,\n<code>Order Summary</code>,\n<code>Item Summary</code>.\nDefault: <code>Detail</code></p>\n","type":"text/plain"},"key":"reportType","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the selection criteria.</p>\n","type":"text/plain"},"key":"reportOptions","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Number column.</p>\n","type":"text/plain"},"key":"orderNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Date column.</p>\n","type":"text/plain"},"key":"orderDate","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Date Needed column.</p>\n","type":"text/plain"},"key":"needed","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Salesperson column.</p>\n","type":"text/plain"},"key":"salespersonField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Route column.</p>\n","type":"text/plain"},"key":"routeField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Stop Number column.</p>\n","type":"text/plain"},"key":"stopNo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order PO number column.</p>\n","type":"text/plain"},"key":"po","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Department column.</p>\n","type":"text/plain"},"key":"dept","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Ship Via column.</p>\n","type":"text/plain"},"key":"shipVia","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Payment Type column.</p>\n","type":"text/plain"},"key":"paymentType","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Total Freight column.</p>\n","type":"text/plain"},"key":"totalFreight","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Total Misc column.</p>\n","type":"text/plain"},"key":"totalMisc","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Total Discount/Spoil column.</p>\n","type":"text/plain"},"key":"totalDiscount","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Total Tax column</p>\n","type":"text/plain"},"key":"totalTax","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Printed Comments column.</p>\n","type":"text/plain"},"key":"printedComment","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Internal Comments column.</p>\n","type":"text/plain"},"key":"internalComment","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Pick Comments column.</p>\n","type":"text/plain"},"key":"pickComment","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Created by Username.</p>\n","type":"text/plain"},"key":"orderCreateUser","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Source column.</p>\n","type":"text/plain"},"key":"orderSource","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Order Status column.</p>\n","type":"text/plain"},"key":"orderStatus","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Code column.</p>\n","type":"text/plain"},"key":"customerCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Name column.</p>\n","type":"text/plain"},"key":"customerName","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Ship To Name column.</p>\n","type":"text/plain"},"key":"shipToName","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Chain Customer Code column.</p>\n","type":"text/plain"},"key":"chainCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Chain Name column.</p>\n","type":"text/plain"},"key":"chainName","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Address Lines columns.</p>\n","type":"text/plain"},"key":"customerAdd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Bill To City column.</p>\n","type":"text/plain"},"key":"billCity","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Bill To State column.</p>\n","type":"text/plain"},"key":"billState","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Bill To Zip column.</p>\n","type":"text/plain"},"key":"billZip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Phone Number column.</p>\n","type":"text/plain"},"key":"customerPhone","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Ship To Address Lines columns.</p>\n","type":"text/plain"},"key":"shipToAdd","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Ship To City column.</p>\n","type":"text/plain"},"key":"shipToCity","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Ship To State column.</p>\n","type":"text/plain"},"key":"shipToState","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Ship To Zip column.</p>\n","type":"text/plain"},"key":"shipToZip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Ship To Phone Number column.</p>\n","type":"text/plain"},"key":"shipToPhone","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Group column.</p>\n","type":"text/plain"},"key":"customerGroup","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Type column.</p>\n","type":"text/plain"},"key":"customerType","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer External Code column.</p>\n","type":"text/plain"},"key":"CustExternal","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Delivery Minimum column.</p>\n","type":"text/plain"},"key":"minOrder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Customer Minimum Type column.</p>\n","type":"text/plain"},"key":"minOrderType","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Office Contact Name column.</p>\n","type":"text/plain"},"key":"officeContact","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Office Contact Fax Number column.</p>\n","type":"text/plain"},"key":"officeFax","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Office Contact Email Address column.</p>\n","type":"text/plain"},"key":"officeEmail","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Sales Contact Name column.</p>\n","type":"text/plain"},"key":"salesContact","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Sales Contact Fax Number column.</p>\n","type":"text/plain"},"key":"salesFax","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Sales Contact Email Address column.</p>\n","type":"text/plain"},"key":"salesEmail","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Accounting Contact Name column.</p>\n","type":"text/plain"},"key":"accountingContact","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Accounting Contact Fax Number column.</p>\n","type":"text/plain"},"key":"accountingFax","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Accounting Contact Email Address column.</p>\n","type":"text/plain"},"key":"accountingEmail","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Code column.</p>\n","type":"text/plain"},"key":"itemCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Descriptional column.</p>\n","type":"text/plain"},"key":"descrip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Category column.</p>\n","type":"text/plain"},"key":"categoryField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Comment column.</p>\n","type":"text/plain"},"key":"comment","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Brand column.</p>\n","type":"text/plain"},"key":"brandField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item Vendor column.</p>\n","type":"text/plain"},"key":"vendorField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Return Reason column.</p>\n","type":"text/plain"},"key":"returnField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Warehouse column.</p>\n","type":"text/plain"},"key":"warehouseField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Specification Code column.</p>\n","type":"text/plain"},"key":"specCode","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Specification Description column.</p>\n","type":"text/plain"},"key":"specDescrip","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Location column.</p>\n","type":"text/plain"},"key":"locationField","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Slot column.</p>\n","type":"text/plain"},"key":"slot","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Lot Info column.</p>\n","type":"text/plain"},"key":"traceinfo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Item External Code column.</p>\n","type":"text/plain"},"key":"ItemExternal","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Created by Username column.</p>\n","type":"text/plain"},"key":"lineCreateUser","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cases Ordered Quantity column.</p>\n","type":"text/plain"},"key":"CSorder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Eaches Ordered Quantity column.</p>\n","type":"text/plain"},"key":"EAorder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Weight Ordered Quantity column.</p>\n","type":"text/plain"},"key":"LBorder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cases Shipped Quantity column.</p>\n","type":"text/plain"},"key":"CSship","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Eaches Shipped Quantity column.</p>\n","type":"text/plain"},"key":"EAship","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Weight Shipped Quantity column.</p>\n","type":"text/plain"},"key":"LBship","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cases Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"CSinv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Eaches Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"EAinv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Weight Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"LBinv","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Cases Left Quantity column.</p>\n","type":"text/plain"},"key":"CSleft","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Eaches Left Quantity column.</p>\n","type":"text/plain"},"key":"EAleft","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Weight Left Quantity column.</p>\n","type":"text/plain"},"key":"LBleft","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Available Cases Quantity column.</p>\n","type":"text/plain"},"key":"CSavail","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Available Eaches Quantity column.</p>\n","type":"text/plain"},"key":"EAavail","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Available Weight Quantity column.</p>\n","type":"text/plain"},"key":"LBavail","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Cases On Order Quantity column.</p>\n","type":"text/plain"},"key":"CSonOrder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Eaches On Order Quantity column.</p>\n","type":"text/plain"},"key":"EAonOrder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Total Weight On Order Quantity column.</p>\n","type":"text/plain"},"key":"LBonOrder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Price column.</p>\n","type":"text/plain"},"key":"price","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Promo Amount column.</p>\n","type":"text/plain"},"key":"promo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Discount Amount column.</p>\n","type":"text/plain"},"key":"lineDiscount","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Net Price column.</p>\n","type":"text/plain"},"key":"netPrice","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Suggested Price column.</p>\n","type":"text/plain"},"key":"SuggPrice","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Price for the Ordered Quantity column.</p>\n","type":"text/plain"},"key":"extendPriceOrder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Price for the Shipped Quantity column.</p>\n","type":"text/plain"},"key":"extendPriceShipped","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Price for the Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"extendPriceInvoiced","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Price for the Left Quantity column.</p>\n","type":"text/plain"},"key":"extendPriceLeft","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Promo Amount column.</p>\n","type":"text/plain"},"key":"ExtendPromo","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Discount Amount column.</p>\n","type":"text/plain"},"key":"ExtendDiscount","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Cost column.</p>\n","type":"text/plain"},"key":"salesCost","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Cost of Goods Sold column.</p>\n","type":"text/plain"},"key":"cogs","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item Billing UOM column.</p>\n","type":"text/plain"},"key":"billUom","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Line Item GP Percent column.</p>\n","type":"text/plain"},"key":"gpPercent","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended GP Dollar Amount Based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"gpOrder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended GP Dollar Amount Based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"gpShipped","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended GP Dollar Amount Based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"gpInvoiced","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended GP Dollar Amount Based on Left Quantity column.</p>\n","type":"text/plain"},"key":"gpLeft","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"extendCostOrder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"extendCostShipped","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"extendCostInvoiced","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost based on Left Quantity column.</p>\n","type":"text/plain"},"key":"extendCostLeft","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost fo Goods Sold based on Ordered Quantity column.</p>\n","type":"text/plain"},"key":"extendCOGSOrder","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost fo Goods Sold based on Shipped Quantity column.</p>\n","type":"text/plain"},"key":"extendCOGSShipped","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost fo Goods Sold based on Invoiced Quantity column.</p>\n","type":"text/plain"},"key":"extendCOGSInvoiced","value":""},{"disabled":true,"description":{"content":"<p>Optional. Display the Extended Cost fo Goods Sold based on Left Quantity column.</p>\n","type":"text/plain"},"key":"extendCOGSLeft","value":""}],"variable":[]}},"response":[],"_postman_id":"f648499d-1525-4685-9915-d3bd7ade74ad"}],"id":"fd6293a8-e824-477c-9043-87d7cf678320","description":"<p><strong>Description:</strong></p>\n<p>This endpoint allows users to retrieve reports in multiple formats based on the Accept header. Supported formats include JSON, XML, CSV, and XLSX. CSV format is only accepted on some reports. The report format returned is determined by the MIME type specified in the Accept header. Additionally, for formats such as CSV and XLSX, the response can be processed and downloaded as a file.</p>\n<p><strong>Headers:</strong></p>\n<ul>\n<li><p>Accept: Determines the format of the report returned. Set the Accept header to one of the following MIME types:</p>\n<ul>\n<li><p><code>application/json</code> for JSON</p>\n</li>\n<li><p><code>application/xml</code> for XML</p>\n</li>\n<li><p><code>text/csv</code> for CSV (returned as a file)</p>\n</li>\n<li><p><code>application/vnd.openxmlformats-officedocument.spreadsheetml.sheet</code> for XLSX (returned as a file)</p>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"fd6293a8-e824-477c-9043-87d7cf678320","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Routes","item":[{"name":"List all routes","event":[{"listen":"prerequest","script":{"id":"408e5694-d2c0-4842-afb1-06623d041437","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"fabc0593-7654-481e-9c92-41dbee240732","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"ba6a756c-67bb-49e5-b712-4bd81488e29c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/routes/","description":"<p>List all routes with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","routes",""],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[]}},"response":[{"id":"961db2e9-15f7-4d87-bff8-4e5028029a88","name":"List all routes","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/routes/","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","routes",""],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:32:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=5A7C8CC386F3DC704C9E40F941A7B0D1; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Routes\": [\n        {\n            \"Id\": 15,\n            \"Code\": \"DELCO\",\n            \"Description\": \"DELAWARE COUNTY\",\n            \"Type\": \"\"\n        },\n        {\n            \"Id\": 4,\n            \"Code\": \"DWa\",\n            \"Description\": \"DelawareA\",\n            \"Type\": \"\"\n        },\n        {\n            \"Id\": 11,\n            \"Code\": \"int6a\",\n            \"Description\": \"INTEGER 64 TESTING A\",\n            \"Type\": \"\"\n        }\n    ],\n    \"NumResults\": 3\n}"}],"_postman_id":"ba6a756c-67bb-49e5-b712-4bd81488e29c"},{"name":"Retrieve a route","event":[{"listen":"prerequest","script":{"id":"88b350c6-47b9-41d0-804f-26a5ef6ac79a","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"ac4fba28-64d6-49aa-b78e-12abc935c425","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"266fe5c2-d452-49f0-979c-8b8e3e0ba877","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/routes/:routeId","description":"<p>List a specific route that matches the routeId</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","routes",":routeId"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter a Route ID</p>\n","type":"text/plain"},"type":"any","value":"{{routeId}}","key":"routeId"}]}},"response":[{"id":"7b5d22cb-985e-4314-8fd0-a0fc0cd3018f","name":"Retrieve a route","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/routes/:routeId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","routes",":routeId"],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}],"variable":[{"key":"routeId","value":"15","description":"Required. Enter a Route ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:33:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=E7C2AF97160DF8EDCC9F19AFDBD9F473; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Routes\": [\n        {\n            \"Id\": 15,\n            \"Code\": \"DELCO\",\n            \"Description\": \"DELAWARE COUNTY\",\n            \"Type\": \"\"\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"266fe5c2-d452-49f0-979c-8b8e3e0ba877"}],"id":"8e25e66a-bfde-4555-8462-6be52ce3c24f","_postman_id":"8e25e66a-bfde-4555-8462-6be52ce3c24f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Salespeople","item":[{"name":"List all salespeople","event":[{"listen":"prerequest","script":{"id":"2e9a5530-06e0-4070-964e-5ed8b85b8620","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();"],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"f62543f0-ed74-47f2-8d79-583e025c6c01","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"2253707e-76ca-4fa6-bb9a-fd9b54a33555","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/salespeople/","description":"<p>List all customers with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","salespeople",""],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[]}},"response":[{"id":"376d316a-26b6-41f3-8e85-0a76291924bc","name":"List all salespeople","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/salespeople/","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","salespeople",""],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 01 Mar 2024 20:21:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=DD85F75B35DFF654AF1F23700D035660; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Salesperson\": [\n        {\n            \"Id\": 3,\n            \"Code\": \"1\",\n            \"Name\": \"one\",\n            \"Region\": \"\",\n            \"IsBroker\": false,\n            \"IsBuyer\": false,\n            \"CommissionPercentage\": 0,\n            \"CommissionByItem\": false,\n            \"CommissionMethod\": \"Sales\"\n        },\n        {\n            \"Id\": 12,\n            \"Code\": \"10\",\n            \"Name\": \"Ten\",\n            \"Region\": \"\",\n            \"IsBroker\": false,\n            \"IsBuyer\": false,\n            \"CommissionPercentage\": 0,\n            \"CommissionByItem\": false,\n            \"CommissionMethod\": \"Sales\"\n        },\n        {\n            \"Id\": 4,\n            \"Code\": \"2\",\n            \"Name\": \"Two\",\n            \"Region\": \"\",\n            \"IsBroker\": false,\n            \"IsBuyer\": false,\n            \"CommissionPercentage\": 0,\n            \"CommissionByItem\": false,\n            \"CommissionMethod\": \"Sales\"\n        }\n    ],\n    \"NumResults\": 3\n}"}],"_postman_id":"2253707e-76ca-4fa6-bb9a-fd9b54a33555"},{"name":"Retrieve a salesperson","event":[{"listen":"prerequest","script":{"id":"8a12a825-34d0-47e3-a807-5a0cbed5c817","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"e38e0d11-ff0e-4cbe-a140-64ca3905a6be","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"3f8c1a4c-d231-43f7-96f4-c2eb87534255","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/salespeople/:salespersonId","description":"<p>List a specific customer that matches the customerId</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","salespeople",":salespersonId"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter a Salesperson's ID</p>\n","type":"text/plain"},"type":"any","value":"{{salespersonId}}","key":"salespersonId"}]}},"response":[{"id":"837f9258-4cfe-4d3f-a76f-4741492b423b","name":"Retrieve a salesperson","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/salespeople/:salespersonId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","salespeople",":salespersonId"],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}],"variable":[{"key":"salespersonId","value":"3","description":"Required. Enter a Salesperson's ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 01 Mar 2024 20:24:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=64F807375FD8D55DD74AF59D9B43BEAC; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Salesperson\": [\n        {\n            \"Id\": 3,\n            \"Code\": \"1\",\n            \"Name\": \"one\",\n            \"Region\": \"\",\n            \"IsBroker\": false,\n            \"IsBuyer\": false,\n            \"CommissionPercentage\": 0,\n            \"CommissionByItem\": false,\n            \"CommissionMethod\": \"Sales\"\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"3f8c1a4c-d231-43f7-96f4-c2eb87534255"}],"id":"8e565c6e-da99-454c-9fae-009fa26b15e6","_postman_id":"8e565c6e-da99-454c-9fae-009fa26b15e6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Ship Methods","item":[{"name":"List all ship methods","event":[{"listen":"prerequest","script":{"id":"ed998028-f3aa-4ed3-8dcd-9fc1b02b5580","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"053e1336-4f13-48a8-b47e-3eb317a33d84","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"7d184459-8756-4ffe-a0ba-fdf7288f29f5","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/ship-methods/","description":"<p>List all ship methods with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","ship-methods",""],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[]}},"response":[{"id":"e01b34d2-1b02-46ff-9a49-2d21ff1321c4","name":"List all ship methods","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/ship-methods/","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","ship-methods",""],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:34:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=DA2931710B9A20D33BEBC7842B6DA5B5; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"ShipMethods\": [\n        {\n            \"Id\": 7,\n            \"Code\": \"1030am1130am\",\n            \"Description\": \"10:30am~11:30am\"\n        },\n        {\n            \"Id\": 3,\n            \"Code\": \"3P\",\n            \"Description\": \"Third Party Delivery Service\"\n        },\n        {\n            \"Id\": 1,\n            \"Code\": \"D\",\n            \"Description\": \"Delivery\"\n        },\n        {\n            \"Id\": 4,\n            \"Code\": \"int64x\",\n            \"Description\": \"INTEGER 64X\"\n        },\n        {\n            \"Id\": 5,\n            \"Code\": \"P\",\n            \"Description\": \"\"\n        },\n        {\n            \"Id\": 6,\n            \"Code\": \"pickup\",\n            \"Description\": \"pickup\"\n        },\n        {\n            \"Id\": 2,\n            \"Code\": \"PU\",\n            \"Description\": \"Pickup\"\n        }\n    ],\n    \"NumResults\": 7\n}"}],"_postman_id":"7d184459-8756-4ffe-a0ba-fdf7288f29f5"},{"name":"Retrieve a ship method","event":[{"listen":"prerequest","script":{"id":"32a86e76-6e7f-4e0c-8dc7-744bda66e4df","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"9b54e994-efb9-49ed-9db7-57263f432e8f","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"11893ef5-0d03-45a9-bb40-5399a90ca5c9","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/ship-methods/:shipId","description":"<p>List a specific ship method that matches the shipId</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","ship-methods",":shipId"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"type":"any","value":"{{shipId}}","key":"shipId"}]}},"response":[{"id":"c492497a-02d2-487b-8be4-e0f071254522","name":"Retrieve a ship method","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/ship-methods/:shipId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","ship-methods",":shipId"],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}],"variable":[{"key":"shipId","value":"7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:35:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=569743A1C1790DF7575D8B032DD1F9EC; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"ShipMethods\": [\n        {\n            \"Id\": 7,\n            \"Code\": \"1030am1130am\",\n            \"Description\": \"10:30am~11:30am\"\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"11893ef5-0d03-45a9-bb40-5399a90ca5c9"}],"id":"e184e956-cf23-4655-a895-0928bab17a75","_postman_id":"e184e956-cf23-4655-a895-0928bab17a75","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Tax Codes","item":[{"name":"List all tax codes","event":[{"listen":"prerequest","script":{"id":"f654c55e-6410-482e-b98c-cae204f6207c","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"e909c006-7051-4141-abe1-2ddd493f742d","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"4a330ac1-2027-4c60-bcef-f087446ba68f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/tax-codes/","description":"<p>List all tax codes with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","tax-codes",""],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[]}},"response":[{"id":"2f075661-ae72-4e5b-b611-0cb7cb8c6232","name":"List all tax codes","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/tax-codes/","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","tax-codes",""],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:35:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=0A7870A048170A313B54C2EEE7881668; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"TaxCodes\": [\n        {\n            \"Id\": 5,\n            \"Code\": \"NONFOOD\",\n            \"Description\": \"Non Food Tax \",\n            \"Account1\": {\n                \"GLAccount\": {\n                    \"Id\": 35,\n                    \"Name\": \"Sales Tax\",\n                    \"Descrip\": \"Sales Tax - \"\n                },\n                \"Percent\": 4\n            },\n            \"Account2\": {\n                \"GLAccount\": {},\n                \"Percent\": 0\n            },\n            \"Account3\": {\n                \"GLAccount\": {},\n                \"Percent\": 0\n            },\n            \"TotalTax\": 4\n        },\n        {\n            \"Id\": 4,\n            \"Code\": \"NTX\",\n            \"Description\": \"NON TAXABLE\",\n            \"Account1\": {\n                \"GLAccount\": {},\n                \"Percent\": 0\n            },\n            \"Account2\": {\n                \"GLAccount\": {},\n                \"Percent\": 0\n            },\n            \"Account3\": {\n                \"GLAccount\": {},\n                \"Percent\": 0\n            },\n            \"TotalTax\": 0\n        },\n        {\n            \"Id\": 2,\n            \"Code\": \"PA\",\n            \"Description\": \"PA Sales Tax\",\n            \"Account1\": {\n                \"GLAccount\": {\n                    \"Id\": 11,\n                    \"Name\": \"Inventory Adjustment:Inv Adj - Spoilage\",\n                    \"Descrip\": \"Inventory Adjustment:Inv Adj - Spoilage - \"\n                },\n                \"Percent\": 6\n            },\n            \"Account2\": {\n                \"GLAccount\": {\n                    \"Id\": 36,\n                    \"Name\": \"80000\",\n                    \"Descrip\": \"Ask My Accountant - Transactions to be discussed with accountant, consultant, or tax preparer\"\n                },\n                \"Percent\": 2\n            },\n            \"Account3\": {\n                \"GLAccount\": {\n                    \"Id\": 35,\n                    \"Name\": \"Sales Tax\",\n                    \"Descrip\": \"Sales Tax - \"\n                },\n                \"Percent\": 1\n            },\n            \"TotalTax\": 9\n        }\n    ],\n    \"NumResults\": 3\n}"}],"_postman_id":"4a330ac1-2027-4c60-bcef-f087446ba68f"},{"name":"Retrieve a tax code","event":[{"listen":"prerequest","script":{"id":"3119c1cd-db06-44c5-bc12-504b86b0ee30","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"debc14f8-44c7-4d03-902f-846c60470b83","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"f5696d97-49bc-4f21-b63f-27ca3dbaf7a6","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/tax-codes/:taxcodeId","description":"<p>List a specific tax code that matches the taxcodeId</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","tax-codes",":taxcodeId"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter a tax code ID</p>\n","type":"text/plain"},"type":"any","value":"{{taxcodeId}}","key":"taxcodeId"}]}},"response":[{"id":"bfef4f9b-19a1-4642-9fea-4160f4d5b9a0","name":"Retrieve a tax code","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/tax-codes/:taxcodeId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","tax-codes",":taxcodeId"],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}],"variable":[{"key":"taxcodeId","value":"5","description":"Required. Enter a tax code ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:35:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=6E464112E86E7DC71DB564CCCAE65DFB; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"TaxCodes\": [\n        {\n            \"Id\": 5,\n            \"Code\": \"NONFOOD\",\n            \"Description\": \"Non Food Tax \",\n            \"Account1\": {\n                \"GLAccount\": {\n                    \"Id\": 35,\n                    \"Name\": \"Sales Tax\",\n                    \"Descrip\": \"Sales Tax - \"\n                },\n                \"Percent\": 4\n            },\n            \"Account2\": {\n                \"GLAccount\": {},\n                \"Percent\": 0\n            },\n            \"Account3\": {\n                \"GLAccount\": {},\n                \"Percent\": 0\n            },\n            \"TotalTax\": 4\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"f5696d97-49bc-4f21-b63f-27ca3dbaf7a6"}],"id":"23fde189-d231-4e33-94a3-156baedd90e5","_postman_id":"23fde189-d231-4e33-94a3-156baedd90e5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Terms","item":[{"name":"List all terms","event":[{"listen":"prerequest","script":{"id":"e8c3a78b-ea7b-49dc-9afa-d8c400943a5c","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"9d1432be-ce4b-4e81-b28a-f3001ffe590d","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"9aad4b0e-5148-4449-8402-cac3fd0703ff","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/terms/","description":"<p>List all terms with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","terms",""],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[]}},"response":[{"id":"3d70bf98-89e4-440d-b261-ed51768888c7","name":"List all terms","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/terms/","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","terms",""],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:36:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=067ED51D8180C7E4E4A89EC200C44C3A; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Terms\": [\n        {\n            \"Id\": 1,\n            \"Code\": \"1\",\n            \"Description\": \"1% 10 Net 30\",\n            \"DueDays\": 30,\n            \"DueNextMonth\": false,\n            \"DiscountDays\": 10,\n            \"DiscountNextMonth\": false,\n            \"DiscountPercentage\": 1,\n            \"IsCOD\": false\n        },\n        {\n            \"Id\": 10,\n            \"Code\": \"10\",\n            \"Description\": \"Consignment\",\n            \"DueDays\": 90,\n            \"DueNextMonth\": false,\n            \"DiscountDays\": 0,\n            \"DiscountNextMonth\": false,\n            \"DiscountPercentage\": 0,\n            \"IsCOD\": false\n        },\n        {\n            \"Id\": 11,\n            \"Code\": \"11\",\n            \"Description\": \"Due on receipt\",\n            \"DueDays\": 0,\n            \"DueNextMonth\": false,\n            \"DiscountDays\": 0,\n            \"DiscountNextMonth\": false,\n            \"DiscountPercentage\": 0,\n            \"IsCOD\": false\n        }\n    ],\n    \"NumResults\": 3\n}"}],"_postman_id":"9aad4b0e-5148-4449-8402-cac3fd0703ff"},{"name":"Retrieve a term","event":[{"listen":"prerequest","script":{"id":"97a3692d-d7b8-4b6c-8a15-759de77c724a","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"790660c0-afdf-4cfb-a6e6-9dc420eb3845","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"15a771c4-f3d3-4e7e-b603-79ed5b317566","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/terms/:terms","description":"<p>List a specific term that matches the terms ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","terms",":terms"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optional. String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[{"description":{"content":"<p>Required. Enter a Terms ID</p>\n","type":"text/plain"},"type":"any","value":"{{termsId}}","key":"terms"}]}},"response":[{"id":"3eb372bc-9cf5-4df9-b72a-b92c40f788c5","name":"Retrieve a term","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/terms/:terms","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","terms",":terms"],"query":[{"key":"pattern","value":"","description":"Optional. String to search by","disabled":true}],"variable":[{"key":"terms","value":"11","description":"Required. Enter a Terms ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:37:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=B6C908E1A78ED436C93F2EEFDD4D2A81; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Terms\": [\n        {\n            \"Id\": 11,\n            \"Code\": \"11\",\n            \"Description\": \"Due on receipt\",\n            \"DueDays\": 0,\n            \"DueNextMonth\": false,\n            \"DiscountDays\": 0,\n            \"DiscountNextMonth\": false,\n            \"DiscountPercentage\": 0,\n            \"IsCOD\": false\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"15a771c4-f3d3-4e7e-b603-79ed5b317566"}],"id":"d466c995-e342-471e-b2fc-54070ce48100","_postman_id":"d466c995-e342-471e-b2fc-54070ce48100","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Vendors","item":[{"name":"List all vendors","event":[{"listen":"prerequest","script":{"id":"c77e412b-9681-42f4-8272-eb5eeb078cf0","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"5d4e3970-0b7c-41eb-8568-a4f4b5a72f06","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"41d0d924-62b8-4cd9-b8d2-9568e881f60e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true},"disableCookies":true},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/","description":"<p>List all vendors with the option to provide a string of characters to search on</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",""],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) String to search by</p>\n","type":"text/plain"},"key":"pattern","value":""}],"variable":[]}},"response":[{"id":"83a02925-a794-42ec-b8e2-5850e5b82ef6","name":"List all vendors","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",""],"query":[{"key":"pattern","value":"","description":"(Optional) String to search by","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 01 Mar 2024 20:08:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"},{"key":"Set-Cookie","value":"JSESSIONID=739401BB18AB8900C64B6640C2AD76EC; Path=/vnqa; Secure; HttpOnly"}],"cookie":[],"responseTime":null,"body":"{\n    \"Vendors\": [\n        {\n            \"Id\": 148050002,\n            \"Name\": \"CASTELLA\",\n            \"Code\": \"004\",\n            \"GuideOn\": false,\n            \"GuideDaysToRetain\": 0,\n            \"GuideSortBy\": \"C\",\n            \"MainContact\": {\n                \"Id\": 130200002,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"Account\": \"\",\n            \"EmailPo\": false,\n            \"FaxPo\": false,\n            \"Type\": \"\",\n            \"Delivery\": {},\n            \"Terms\": {},\n            \"Address\": {\n                \"Id\": 163220002,\n                \"Addr1\": \"\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"\",\n                \"StateCode\": \"\",\n                \"ZipCode\": \"\",\n                \"Country\": \"\",\n                \"Phone\": \"\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"Comment\": \"\"\n        },\n        {\n            \"Id\": 148060002,\n            \"Name\": \"DOT FOODS Vendor\",\n            \"Code\": \"013\",\n            \"GuideOn\": true,\n            \"GuideDaysToRetain\": 90,\n            \"GuideSortBy\": \"I\",\n            \"MainContact\": {\n                \"Id\": 130210002,\n                \"Name\": \"Liz Smith\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"Account\": \"\",\n            \"EmailPo\": false,\n            \"FaxPo\": false,\n            \"Type\": \"\",\n            \"Delivery\": {},\n            \"Terms\": {\n                \"Id\": 5,\n                \"Code\": \"5\",\n                \"Description\": \"Net 15\"\n            },\n            \"Address\": {\n                \"Id\": 163240002,\n                \"Addr1\": \"15 East State Blvd\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"Phila\",\n                \"StateCode\": \"PA\",\n                \"ZipCode\": \"18901\",\n                \"Country\": \"\",\n                \"Phone\": \"215-300-4000\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"Comment\": \"\"\n        },\n        {\n            \"Id\": 370001,\n            \"Name\": \"A. M. JENSEN\",\n            \"Code\": \"A.M.JENSEN\",\n            \"GuideOn\": true,\n            \"GuideDaysToRetain\": 120,\n            \"GuideSortBy\": \"I\",\n            \"MainContact\": {\n                \"Id\": 10080001,\n                \"Name\": \"MARY ALICE SUMMERTIME\",\n                \"Fax\": \"(215) 794-7008\",\n                \"Email\": \"angela@foodconnex.com\"\n            },\n            \"Account\": \"abcdefghij\",\n            \"EmailPo\": true,\n            \"FaxPo\": false,\n            \"Type\": \"\",\n            \"Delivery\": {\n                \"Id\": 5,\n                \"Code\": \"P\",\n                \"Description\": \"\"\n            },\n            \"Terms\": {\n                \"Id\": 6,\n                \"Code\": \"6\",\n                \"Description\": \"Net 30\"\n            },\n            \"Address\": {\n                \"Id\": 13500001,\n                \"Addr1\": \"22 WEST END BLVD\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"ALLENTOWN\",\n                \"StateCode\": \"PA\",\n                \"ZipCode\": \"18977\",\n                \"Country\": \"\",\n                \"Phone\": \"(215) 794-7008\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"Comment\": \"1112223334444,test comment,test comment\"\n        },\n        {\n            \"Id\": 380001,\n            \"Name\": \"AAA INTERNATIONAL\",\n            \"Code\": \"AAA\",\n            \"GuideOn\": true,\n            \"GuideDaysToRetain\": 180,\n            \"GuideSortBy\": \"C\",\n            \"MainContact\": {\n                \"Id\": 10090001,\n                \"Name\": \"\",\n                \"Fax\": \"\",\n                \"Email\": \"\"\n            },\n            \"Account\": \"\",\n            \"EmailPo\": false,\n            \"FaxPo\": false,\n            \"Type\": \"\",\n            \"Delivery\": {},\n            \"Terms\": {\n                \"Id\": 7,\n                \"Code\": \"7\",\n                \"Description\": \"Net 60\"\n            },\n            \"Address\": {\n                \"Id\": 13520001,\n                \"Addr1\": \"\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"\",\n                \"StateCode\": \"PA\",\n                \"ZipCode\": \"\",\n                \"Country\": \"\",\n                \"Phone\": \"\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"Comment\": \"\"\n        }\n    ],\n    \"NumResults\": 4\n}"}],"_postman_id":"41d0d924-62b8-4cd9-b8d2-9568e881f60e"},{"name":"Retrieve a vendor","event":[{"listen":"prerequest","script":{"id":"09c4c430-4ab6-43ad-8311-9caf6d76166c","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"b5dbe7dd-993b-4707-b490-77e291cd31ee","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"0ba3d087-2857-454d-b647-7abde497d3e9","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId","description":"<p>List a specific vendor that matches the provided vendorId</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Vendor ID</p>\n","type":"text/plain"},"type":"any","value":"{{vendorId}}","key":"vendorId"}]}},"response":[{"id":"87111029-6343-44e8-8fa4-7d28ef82c15b","name":"Retrieve a vendor","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId"],"variable":[{"key":"vendorId","value":"370001","description":"Required. Enter a Vendor ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:40:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"Vendors\": [\n        {\n            \"Id\": 370001,\n            \"Name\": \"A. M. JENSEN\",\n            \"Code\": \"A.M.JENSEN\",\n            \"GuideOn\": true,\n            \"GuideDaysToRetain\": 120,\n            \"GuideSortBy\": \"I\",\n            \"MainContact\": {\n                \"Id\": 10080001,\n                \"Name\": \"MARY ALICE SUMMERTIME \",\n                \"Fax\": \"215-794-7008\",\n                \"Email\": \"angela@foodconnex.com\"\n            },\n            \"Account\": \"abcdefghij\",\n            \"EmailPo\": true,\n            \"FaxPo\": false,\n            \"Type\": \"\",\n            \"Delivery\": {\n                \"Id\": 5,\n                \"Code\": \"P\",\n                \"Description\": \"\"\n            },\n            \"Terms\": {\n                \"Id\": 6,\n                \"Code\": \"6\",\n                \"Description\": \"Net 30\"\n            },\n            \"Address\": {\n                \"Id\": 13500001,\n                \"Addr1\": \"22 WEST END BLVD\",\n                \"Addr2\": \"\",\n                \"Addr3\": \"\",\n                \"Addr4\": \"\",\n                \"Addr5\": \"\",\n                \"City\": \"ALLENTOWN\",\n                \"StateCode\": \"PA\",\n                \"ZipCode\": \"18977\",\n                \"Country\": \"PA\",\n                \"Phone\": \"215-794-7008\",\n                \"Fax\": \"\",\n                \"Note\": \"\"\n            },\n            \"Comment\": \"1112223334444,test comment,test comment\"\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"0ba3d087-2857-454d-b647-7abde497d3e9"}],"id":"3cd02a1d-8f1d-4b96-b005-8b85e12876fb","_postman_id":"3cd02a1d-8f1d-4b96-b005-8b85e12876fb","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Vendor Pick Ups","item":[{"name":"List all pick ups for a vendor","event":[{"listen":"prerequest","script":{"id":"36dba4ed-c743-40ad-9bd7-96cb431681a5","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"c8a83b0e-b892-4f68-bdd9-f57fa012ac16","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"da00007a-cccb-4b16-9011-277d4546f076","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/pick-ups","description":"<p>Get a list of Pick Up addresses for a vendor</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","pick-ups"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Vendor ID</p>\n","type":"text/plain"},"type":"any","value":"{{vendorId}}","key":"vendorId"}]}},"response":[{"id":"428a4ab1-4da7-4df4-b1f6-70706f8efb3f","name":"List all vendor's pick ups","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/pick-ups","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","pick-ups"],"variable":[{"key":"vendorId","value":"370001","description":"Required. Enter a Vendor ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:41:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"Vendors\": [\n        {\n            \"Id\": 370001,\n            \"Name\": \"A. M. JENSEN\",\n            \"Code\": \"A.M.JENSEN\",\n            \"Pickups\": [\n                {\n                    \"Id\": 1,\n                    \"Code\": \"pickup\",\n                    \"Name\": \"Pickup Address\",\n                    \"Address\": {\n                        \"Id\": 74680002,\n                        \"Addr1\": \"123 Maple\",\n                        \"Addr2\": \"Second Dock\",\n                        \"Addr3\": \"\",\n                        \"Addr4\": \"\",\n                        \"Addr5\": \"\",\n                        \"City\": \"Willow Grove\",\n                        \"StateCode\": \"PA\",\n                        \"ZipCode\": \"19554\",\n                        \"Country\": \"\",\n                        \"Phone\": \"(215) 555-6987\",\n                        \"Fax\": \"\",\n                        \"Note\": \"\"\n                    }\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"},{"id":"5128da9e-e246-462e-9e12-30e3a189ad23","name":"List all vendor's pick ups","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/pick-ups","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","pick-ups"],"variable":[{"key":"vendorId","value":"148050002","description":"Required. Enter a Vendor ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 01 Mar 2024 20:21:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"Vendors\": [\n        {\n            \"Id\": 148050002,\n            \"Name\": \"CASTELLA\",\n            \"Code\": \"004\",\n            \"Pickups\": [\n                {\n                    \"Id\": 1,\n                    \"Code\": \"PU\",\n                    \"Name\": \"DIFFERENT LOCATION\",\n                    \"Address\": {\n                        \"Id\": 327080002,\n                        \"Addr1\": \"123 ANY STREET\",\n                        \"Addr2\": \"\",\n                        \"Addr3\": \"\",\n                        \"Addr4\": \"\",\n                        \"Addr5\": \"\",\n                        \"City\": \"PHILA\",\n                        \"StateCode\": \"PA\",\n                        \"ZipCode\": \"19106\",\n                        \"Country\": \"\",\n                        \"Phone\": \"\",\n                        \"Fax\": \"\",\n                        \"Note\": \"\"\n                    }\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"da00007a-cccb-4b16-9011-277d4546f076"},{"name":"Retrieve a vendor pick up","event":[{"listen":"prerequest","script":{"id":"8fafd8e8-0d90-46a4-9e80-9e2badc1c731","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"bb47f0d9-f7c8-4e58-b174-807cd0a544c8","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"ea715159-09dd-45dd-94d8-da72394f97f7","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/pick-ups/:pickupId","description":"<p>List a specific pickup for a vendor</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","pick-ups",":pickupId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Vendor ID</p>\n","type":"text/plain"},"type":"any","value":"{{vendorId}}","key":"vendorId"},{"description":{"content":"<p>Required. Enter a Pickup ID for the Vendor</p>\n","type":"text/plain"},"type":"any","value":"{{pickupId}}","key":"pickupId"}]}},"response":[{"id":"f1e6a918-600f-493a-aa6c-02df9005e030","name":"Retrieve a vendor pick up","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/pick-ups/:pickupId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","pick-ups",":pickupId"],"variable":[{"key":"vendorId","value":"370001","description":"Required. Enter a Vendor ID"},{"key":"pickupId","value":"1","description":"Required. Enter a Pickup ID for the Vendor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:41:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"Vendors\": [\n        {\n            \"Id\": 370001,\n            \"Name\": \"A. M. JENSEN\",\n            \"Code\": \"A.M.JENSEN\",\n            \"Pickups\": [\n                {\n                    \"Id\": 1,\n                    \"Code\": \"pickup\",\n                    \"Name\": \"Pickup Address\",\n                    \"Address\": {\n                        \"Id\": 74680002,\n                        \"Addr1\": \"123 Maple\",\n                        \"Addr2\": \"Second Dock\",\n                        \"Addr3\": \"\",\n                        \"Addr4\": \"\",\n                        \"Addr5\": \"\",\n                        \"City\": \"Willow Grove\",\n                        \"StateCode\": \"PA\",\n                        \"ZipCode\": \"19554\",\n                        \"Country\": \"\",\n                        \"Phone\": \"(215) 555-6987\",\n                        \"Fax\": \"\",\n                        \"Note\": \"\"\n                    }\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"ea715159-09dd-45dd-94d8-da72394f97f7"}],"id":"eb36489f-d3f3-4e6e-a28d-ffaaaf35c0b7","_postman_id":"eb36489f-d3f3-4e6e-a28d-ffaaaf35c0b7","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Vendor Charges","item":[{"name":"List all charges for a vendor","event":[{"listen":"prerequest","script":{"id":"abe505b4-8dc9-4c55-a367-3b74a11c94cb","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"94da2ad0-a1a0-4a5c-bca6-2e3e4d448f2e","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"fc8bda2a-17e4-4cf5-9007-904d356548fe","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/charges","description":"<p>Get a list of Charges for a vendor</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","charges"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Vendor ID</p>\n","type":"text/plain"},"type":"any","value":"{{vendorId}}","key":"vendorId"}]}},"response":[{"id":"ad9cceee-d972-4f07-9727-75f45dc1d422","name":"List all vendor's charges","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/charges","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","charges"],"variable":[{"key":"vendorId","value":"148050002","description":"Required. Enter a Vendor ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 17:34:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"Vendors\": [\n        {\n            \"Id\": 148050002,\n            \"Name\": \"CASTELLA\",\n            \"Code\": \"004\",\n            \"Charges\": [\n                {\n                    \"Id\": 33,\n                    \"Code\": \"OEFuelChrgTotal\",\n                    \"Descrip\": \"OE Fuel Chrg Percent of Total\",\n                    \"Type\": \"Price\",\n                    \"Amount\": 20,\n                    \"UOM\": \"% of Total\",\n                    \"IncludeIn\": \"Trans Freight\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"fc8bda2a-17e4-4cf5-9007-904d356548fe"},{"name":"Retrieve a vendor charge","event":[{"listen":"prerequest","script":{"id":"82d2a0da-413a-49e2-ba0c-57f8b5f12b78","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"4ab65aa9-549f-404e-93dc-da83cf94187a","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"a3ef28c0-6eaa-47b5-8b36-3a52a9d12126","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/charges/:chargeId","description":"<p>Get a specific charge that matches the chargeId for a vendor</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","charges",":chargeId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Vendor ID</p>\n","type":"text/plain"},"type":"any","value":"{{vendorId}}","key":"vendorId"},{"description":{"content":"<p>Required. Enter a Charge ID for the Vendor</p>\n","type":"text/plain"},"type":"any","value":"{{vendorChargeId}}","key":"chargeId"}]}},"response":[{"id":"a4785f42-f165-46a8-b173-6f27e7e1d149","name":"Retrieve a vendor charge","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/charges/:chargeId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","charges",":chargeId"],"variable":[{"key":"vendorId","value":"148050002","description":"Required. Enter a Vendor ID"},{"key":"chargeId","value":"33","description":"Required. Enter a Charge ID for the Vendor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 09 Apr 2024 17:35:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"Vendors\": [\n        {\n            \"Id\": 148050002,\n            \"Name\": \"CASTELLA\",\n            \"Code\": \"004\",\n            \"Charges\": [\n                {\n                    \"Id\": 33,\n                    \"Code\": \"OEFuelChrgTotal\",\n                    \"Descrip\": \"OE Fuel Chrg Percent of Total\",\n                    \"Type\": \"Price\",\n                    \"Amount\": 20,\n                    \"UOM\": \"% of Total\",\n                    \"IncludeIn\": \"Trans Freight\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"a3ef28c0-6eaa-47b5-8b36-3a52a9d12126"}],"id":"8e66f186-d3c0-4eac-a54f-a791a7e130d1","_postman_id":"8e66f186-d3c0-4eac-a54f-a791a7e130d1","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}},{"name":"Vendor Custom Fields","item":[{"name":"List all custom fields for a vendor","event":[{"listen":"prerequest","script":{"id":"915ba721-e550-4c7b-91ac-0649d8523827","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"afa2da14-0db9-4348-ad57-c23806212a2d","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"1f55b7c4-8748-4579-ba1d-14bd25b4914a","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/custom-fields","description":"<p>Get a list of Custom Fields for a vendor</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","custom-fields"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Vendor ID</p>\n","type":"text/plain"},"type":"any","value":"{{vendorId}}","key":"vendorId"}]}},"response":[{"id":"50cda53a-34bb-4527-a759-e9429ddcccd9","name":"List all vendor's custom fields","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/custom-fields","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","custom-fields"],"variable":[{"key":"vendorId","value":"370001","description":"Required. Enter a Vendor ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:44:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"Vendors\": [\n        {\n            \"Id\": 370001,\n            \"Name\": \"A. M. JENSEN\",\n            \"Code\": \"A.M.JENSEN\",\n            \"CustomFields\": [\n                {\n                    \"HeaderId\": 7,\n                    \"DetailId\": 8,\n                    \"ExportPartner\": \"Trackmax\",\n                    \"FieldLabel\": \"Buyer\",\n                    \"Value\": \"AD1 - AD 1\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"1f55b7c4-8748-4579-ba1d-14bd25b4914a"},{"name":"List all custom fields for a header","event":[{"listen":"prerequest","script":{"id":"1a2c2471-b93a-4393-a851-874a192ac2de","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"1f54a0ac-1f46-4792-a7f6-be247f8ceb08","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"ab404012-0026-421c-94f5-f58247184ed3","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/custom-fields/:headerId","description":"<p>Get a list of Custom Fields for a vendor</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","custom-fields",":headerId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Vendor ID</p>\n","type":"text/plain"},"type":"any","value":"{{vendorId}}","key":"vendorId"},{"description":{"content":"<p>Required. Enter a Header ID</p>\n","type":"text/plain"},"type":"any","value":"{{vendorCustomFieldHeaderId}}","key":"headerId"}]}},"response":[{"id":"05e19134-b60c-41fd-b067-8d3f7dcc1957","name":"List all custom fields for a header","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/custom-fields/:headerId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","custom-fields",":headerId"],"variable":[{"key":"vendorId","value":"370001","description":"Required. Enter a Vendor ID"},{"key":"headerId","value":"7","description":"Required. Enter a Header ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:45:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"Vendors\": [\n        {\n            \"Id\": 370001,\n            \"Name\": \"A. M. JENSEN\",\n            \"Code\": \"A.M.JENSEN\",\n            \"CustomFields\": [\n                {\n                    \"HeaderId\": 7,\n                    \"DetailId\": 8,\n                    \"ExportPartner\": \"Trackmax\",\n                    \"FieldLabel\": \"Buyer\",\n                    \"Value\": \"AD1 - AD 1\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"ab404012-0026-421c-94f5-f58247184ed3"},{"name":"Retrieve a custom field","event":[{"listen":"prerequest","script":{"id":"b9b9772f-8307-4d35-8cac-a49a4fb7cac8","exec":["const myTests = pm.require('@warped-capsule-160263/universal-tests');\r","\r","myTests.testPathVariables();\r",""],"type":"text/javascript","packages":{"@warped-capsule-160263/universal-tests":{"id":"0192b559-a2cd-7cd8-83ce-13a45f4e1f65"}}}},{"listen":"test","script":{"id":"f51ccd4b-652a-4fa4-83c4-8a55d66d9c5b","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"665d3098-0b73-4350-bf45-27901a065d98","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/custom-fields/:headerId/:detailId","description":"<p>Get a list of Custom Fields for a vendor</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}},"urlObject":{"protocol":"https","path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","custom-fields",":headerId",":detailId"],"host":["{{url}}"],"query":[],"variable":[{"description":{"content":"<p>Required. Enter a Vendor ID</p>\n","type":"text/plain"},"type":"any","value":"{{vendorId}}","key":"vendorId"},{"description":{"content":"<p>Required. Enter a Header ID</p>\n","type":"text/plain"},"type":"any","value":"{{vendorCustomFieldHeaderId}}","key":"headerId"},{"description":{"content":"<p>Required. Enter a Detail ID</p>\n","type":"text/plain"},"type":"any","value":"{{vendorCustomFieldDetailId}}","key":"detailId"}]}},"response":[{"id":"71351ac6-079f-418e-9d6f-19c450a06382","name":"Retrieve a custom field","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml","disabled":true}],"url":{"raw":"https://{{url}}/vn{{sandbox}}/{{clientId}}/api/v1/vendors/:vendorId/custom-fields/:headerId/:detailId","protocol":"https","host":["{{url}}"],"path":["vn{{sandbox}}","{{clientId}}","api","v1","vendors",":vendorId","custom-fields",":headerId",":detailId"],"variable":[{"key":"vendorId","value":"370001","description":"Required. Enter a Vendor ID"},{"key":"headerId","value":"7","description":"Required. Enter a Header ID"},{"key":"detailId","value":"8","description":"Required. Enter a Detail ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Fri, 16 Feb 2024 21:46:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Wed, 31 Dec 1969 19:00:00 EST"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"Vendors\": [\n        {\n            \"Id\": 370001,\n            \"Name\": \"A. M. JENSEN\",\n            \"Code\": \"A.M.JENSEN\",\n            \"CustomFields\": [\n                {\n                    \"HeaderId\": 7,\n                    \"DetailId\": 8,\n                    \"ExportPartner\": \"Trackmax\",\n                    \"FieldLabel\": \"Buyer\",\n                    \"Value\": \"AD1 - AD 1\"\n                }\n            ]\n        }\n    ],\n    \"NumResults\": 1\n}"}],"_postman_id":"665d3098-0b73-4350-bf45-27901a065d98"}],"id":"0dd94923-93eb-4025-9df8-4a5094c72d14","_postman_id":"0dd94923-93eb-4025-9df8-4a5094c72d14","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","id":"5499d2ec-662b-4a32-8b0a-3f1db30f3e63","name":"FoodConnex API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"97fa36ff-f07c-4de3-abce-7f93f34d0783","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"674458af-4c34-412f-a92b-c8351a8e2dd4","type":"text/javascript","exec":[""]}}],"variable":[{"key":"apiToken","value":"","type":"string"}]}