{"info":{"_postman_id":"9d0408aa-4178-4ccf-a74d-6b72acb55896","name":"Logicbroker Commerce API","description":"<html><head></head><body><p>The Logicbroker Commerce API provides your system insight into the entire order lifecycle using a single connection. Regardless of the file format your trading partner utilizes( EDI, CSV, XML, JSON)  the API consumes and returns information in a single format (JSON/XML). This works for suppliers or retailers. </p>\n<p></p>\nThe Commerce API eliminates the need to worry about partner-specific data formats, or endpoints. With Logicbroker: 1 Connection; 1 Format; Countless Partners \n<p></p>\n<p><img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/API-Many-to-Many.png\"><br></p>\n\n<h1 id=\"api-authentication\">API Authentication</h1>\n<p>To setup an API key either logon to Logicbroker test or production portal depending on which environment you need the key for and generate a primary and/or secondary key(s).</p><p></p><p>Primary key is generally for your internal use where as the secondary key can be shared with your 3rd party development or external resources.</p><p></p><p><b>Test portal:</b> <a href=\"https://stageportal.logicbroker.com/profile/api-authentication/\">https://stageportal.logicbroker.com</a></p><p><b>Production portal:</b> <a href=\"https://portal.logicbroker.com/profile/api-authentication/\">https://portal.logicbroker.com</a></p>\n<p></p>\nEvery request must have the API key as a URL query parameter (subscription-key). Within the Postman collection the subscription-key is setup as a global variable; this will need to be updated with your own. \n<p></p>\n<p><img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/01-Authentication-in-portal.png\"><br></p>\n\n<h1 id=\"understanding-the-flow\">Understanding the Flow</h1>\n<p>•Where to get each data set needed</p><p>•Pulling on status vs. using webhooks</p><p>•Status driven document flow</p><p>•End to end testing with trading partners (drop ship suppliers or 3PL fulfillments)</p>\n<p></p>\n\n<h1 id=\"testing-the-flow\">Testing the Flow</h1>\n<p>By clicking \"Run in Postman\" you can open a preset recommended flow for processing your documents. Following the steps will persist the data to the next step accuratley showing you an ideal process. To begin the test you will need to enter your stage API Key as a variable. You can do this by clicking the following icon and then \"Edit\" next to environments.</p>\n<p><img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/03-Postman-Environment-Variables.png\"><br></p>\n<br>\nUpdate the highlighted **subscription-key** variable with your API Key and click **save**. \n<br>\n<p><img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/04-Postman-Manage-Environment-Variables.png\"><br></p>\n\n<p><strong>Note all the variables listed are updated with test data as you go through the flow.</strong></p>\n<p><strong>RetailerPartnerPO, TestSKU1, TestPartnerSKU1</strong> , and <strong>TestUPC1</strong> are all defaulted with values, however they can be changed to simulate orders with real line items.</p>\n<p>For the Supplier Order Lifecycle variables will get generated automatically for creation of Acknowledgements, Shipments, and Invoices. These will be identified as <strong>LogicbrokerKey, AckDetail, ShipDetail,</strong> and <strong>InvoiceDetail</strong>. For the supplier flow you will only need to enter the <strong>subscription-key</strong> variable.  </p>\n<h1 id=\"support\">Support</h1>\n<p>Here are some links to additional documentation that will help you with your integration. </p>\n<p><a href=\"https://stage.commerceapi.io/swagger/ui/index\">API Reference</a></p>\n<p></p>\n[Help Center](http://help.logicbroker.com/hc/en-us)\n<p></p>\n[Document Standards](http://help.logicbroker.com/hc/en-us/categories/200150379-Document-Standards)</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"API Authentication","slug":"api-authentication"},{"content":"Understanding the Flow","slug":"understanding-the-flow"},{"content":"Testing the Flow","slug":"testing-the-flow"},{"content":"Support","slug":"support"}],"owner":"3967924","collectionId":"9d0408aa-4178-4ccf-a74d-6b72acb55896","publishedId":"RW1dExE1","public":true,"customColor":null,"publishDate":"2018-05-01T17:20:41.000Z"},"item":[{"name":"1. Retailer Order Lifecycle","item":[{"name":"Step 1: Create an Order","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var RetailerPartnerPO = postman.getGlobalVariable(\"RetailerPartnerPO\");","if(RetailerPartnerPO == \"\" || RetailerPartnerPO == null){","    postman.setGlobalVariable(\"RetailerPartnerPO\", \"100100\");","}","var newRetailerPartnerPO = parseInt(postman.getGlobalVariable(\"RetailerPartnerPO\")) + 1;","if(newRetailerPartnerPO !== \"\" && newRetailerPartnerPO !== null && newRetailerPartnerPO !== \"NaN\"){","    postman.setGlobalVariable(\"RetailerPartnerPO\", newRetailerPartnerPO);","}"]}},{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);\r","var LogicbrokerKey = parseInt(jsonData.Body.LogicbrokerKey);\r","postman.setEnvironmentVariable(\"LogicbrokerKey\", LogicbrokerKey.toString());\r","\r","var ackdata = {\r","  \"ShipToAddress\": {\r","    \"CompanyName\": \"Warehouse 123\",\r","    \"FirstName\": \"WGuy\",\r","    \"LastName\": \"House\",\r","    \"Address1\": \"123 Warehouse St\",\r","    \"Address2\": \"Building A\",\r","    \"City\": \"Shelton\",\r","    \"State\": \"CT\",\r","    \"Country\": \"US\",\r","    \"Zip\": \"06484\",\r","    \"AddressCode\": \"333\",\r","    \"Phone\": \"123-123-1234\",\r","    \"ContactType\": 0,\r","    \"Email\": \"WH@Warehouse.com\"\r","  },\r","  \"BillToAddress\": {\r","    \"CompanyName\": \"Warehouse 123\",\r","    \"FirstName\": \"WGuy\",\r","    \"LastName\": \"House\",\r","    \"Address1\": \"123 Warehouse St\",\r","    \"Address2\": \"Building A\",\r","    \"City\": \"Shelton\",\r","    \"State\": \"CT\",\r","    \"Country\": \"US\",\r","    \"Zip\": \"06484\",\r","    \"AddressCode\": \"333\",\r","    \"Phone\": \"123-123-1234\",\r","    \"ContactType\": 0,\r","    \"Email\": \"WH@Warehouse.com\"\r","  },\r","  \"ShipFromAddress\": {\r","    \"ContactType\": 0\r","  },\r","  \"Identifier\": {\r","\r","  },\r","  \"Type\": 0,\r","  \"AcknowledgementNumber\": \"ACK1778512879\",\r","  \"OrderDate\": \"2015-11-13T18:34:52.411Z\",\r","  \"PartnerPO\": \"{{RetailerPartnerPO}}\",\r","  \"VendorNumber\": \"V12345\",\r","  \"ChangeReason\": \"HeaderChangeReason\",\r","  \"ScheduledShipDate\": \"2016-02-15T07:32:00\",\r","  \"StatusCode\": 0,\r","  \"ExtendedAttributes\": [\r","    {\r","      \"Name\": \"EXAMPLE\",\r","      \"Value\": \"Portal\"\r","    }\r","  ],\r","  \"AckLines\": [\r","    {\r","      \"ItemIdentifier\": {\r","        \"SupplierSKU\": \"49-98760\",\r","        \"PartnerSKU\": \"J07874\",\r","        \"UPC\": \"123456789012\"\r","      },\r","      \"Type\": 1,\r","      \"Quantity\": 2,\r","      \"QuantityCancelled\": 0,\r","      \"QuantityBackordered\": 0,\r","      \"Price\": 0.0,\r","      \"PriceCode\": \"WH\",\r","      \"RetailPrice\": 47.98,\r","      \"QuantityUOM\": \"string\",\r","      \"ChangeReason\": \"ItemLevelChange\",\r","      \"LineNumber\": \"1\",\r","      \"ExtendedAttributes\": [\r","        {\r","          \"Name\": \"Color\",\r","          \"Value\": \"Blue\"\r","        },\r","        {\r","          \"Name\": \"Size\",\r","          \"Value\": \"Size 15\"\r","        }\r","      ]\r","    }\r","  ]\r","}\r","\r","\r","postman.setEnvironmentVariable(\"AckDetail\", JSON.stringify(ackdata, null, '\\t'));\r","postman.setNextRequest(\"Post an Acknowledgement (used to test steps 2-4)\");\r","\r","\r","var asndata = {\r","  \"ShipFromAddress\": {\r","    \"CompanyName\": \"Warehouse 123\",\r","    \"FirstName\": \"WGuy\",\r","    \"LastName\": \"House\",\r","    \"Address1\": \"123 Warehouse St\",\r","    \"Address2\": \"Building A\",\r","    \"City\": \"Shelton\",\r","    \"State\": \"CT\",\r","    \"Country\": \"US\",\r","    \"Zip\": \"06484\",\r","    \"AddressCode\": \"333\",\r","    \"Phone\": \"123-123-1234\",\r","    \"ContactType\": 0,\r","    \"Email\": \"WH@Warehouse.com\"\r","  },\r","  \"ExpectedDeliveryDate\": \"2015-11-13T18:34:52.411Z\",\r","  \"BillofLading\": \"BOL1234\",\r","  \"PRONumber\": \"PRO1234\",\r","  \"ShipmentNumber\": \"SH1778512879\",\r","  \"ShipmentLines\": [\r","    {\r","      \"ItemIdentifier\": {\r","        \"SupplierSKU\": \"49-98760\",\r","        \"PartnerSKU\": \"J07874\",\r","        \"UPC\": \"123456789012\"\r","      },\r","      \"Price\": 2.0,\r","      \"RetailPrice\": 0.0,\r","      \"Cost\": 0.0,\r","      \"MSRP\": 0.0,\r","      \"Description\": \"Glass Bottle\",\r","      \"Discounts\": [],\r","      \"ShipmentInfos\": [\r","        {\r","          \"DateShipped\": \"0001-01-01T12:00:00\",\r","          \"CarrierCode\": \"FEDG1\",\r","          \"ClassCode\": \"FDEG_GD\",\r","          \"ServiceLevelCode\": \"string\",\r","          \"TrackingNumber\": \"TRK11111\",\r","          \"ContainerCode\": \"00086275400000051600\",\r","          \"Qty\": 5,\r","          \"ContainerType\": \"CTN\",\r","          \"ShipmentContainerParentCode\": \"00086275400000051594\",\r","          \"Height\": 0.0,\r","          \"Width\": 0.0,\r","          \"Length\": 0.0,\r","          \"DimensionUnit\": \"IN\",\r","          \"Weight\": 0.0,\r","          \"WeightUnit\": \"LB\"\r","        }\r","      ],\r","      \"Taxes\": [],\r","      \"Quantity\": 5,\r","      \"QuantityUOM\": \"EA\",\r","      \"LineNumber\": \"1\",\r","      \"Weight\": 0.0,\r","      \"ExtendedAttributes\": [\r","        {\r","          \"Name\": \"Color\",\r","          \"Value\": \"Blue\"\r","        },\r","        {\r","          \"Name\": \"Size\",\r","          \"Value\": \"Size 15\"\r","        }\r","      ]\r","    }\r","  ],\r","  \"Identifier\": {\r","  },\r","  \"OrderNumber\": \"1234\",\r","  \"VendorNumber\": \"12345\",\r","  \"PartnerPO\": \"{{RetailerPartnerPO}}\",\r","  \"OrderDate\": \"2015-11-13T18:34:52.411Z\",\r","  \"Payments\": [\r","    {\r","      \"Method\": \"CC\"\r","    }\r","  ],\r","  \"PaymentTerm\": {\r","    \"PayInNumberOfDays\": 0,\r","    \"DiscountInNumberOfDays\": 0,\r","    \"AvailableDiscount\": 0.0,\r","    \"DueDate\": \"0001-01-01T00:00:00\",\r","    \"DiscountDueDate\": \"0001-01-01T00:00:00\",\r","    \"EffectiveDate\": \"0001-01-01T00:00:00\"\r","  },\r","  \"ShipmentInfos\": [\r","    {\r","      \"DateShipped\": \"0001-01-01T00:00:00\",\r","      \"TrackingNumber\": \"TRK11111\",\r","      \"ContainerCode\": \"00086275400000051600\",\r","      \"ContainerType\": \"PLT\",\r","      \"Height\": 0.0,\r","      \"Width\": 0.0,\r","      \"Length\": 0.0,\r","      \"DimensionUnit\": \"IN\",\r","      \"Weight\": 0.0,\r","      \"WeightUnit\": \"LB\"\r","    }\r","  ],\r","  \"ShipToAddress\": {\r","    \"CompanyName\": \"Warehouse 123\",\r","    \"FirstName\": \"WGuy\",\r","    \"LastName\": \"House\",\r","    \"Address1\": \"123 Warehouse St\",\r","    \"Address2\": \"Building A\",\r","    \"City\": \"Shelton\",\r","    \"State\": \"CT\",\r","    \"Country\": \"US\",\r","    \"Zip\": \"06484\",\r","    \"AddressCode\": \"333\",\r","    \"Phone\": \"123-123-1234\",\r","    \"ContactType\": 0,\r","    \"Email\": \"WH@Warehouse.com\"\r","  },\r","  \"BillToAddress\": {\r","    \"CompanyName\": \"Warehouse 123\",\r","    \"FirstName\": \"WGuy\",\r","    \"LastName\": \"House\",\r","    \"Title\": \"\",\r","    \"Address1\": \"123 Warehouse St\",\r","    \"Address2\": \"Building A\",\r","    \"City\": \"Shelton\",\r","    \"State\": \"CT\",\r","    \"Country\": \"US\",\r","    \"Zip\": \"06484\",\r","    \"Province\": \"\",\r","    \"AddressCode\": \"333\",\r","    \"StateCode\": \"\",\r","    \"Phone\": \"123-123-1234\",\r","    \"ContactID\": \"\",\r","    \"ContactType\": 0,\r","    \"Email\": \"WH@Warehouse.com\",\r","    \"TaxNumber\": \"\",\r","    \"Note\": \"\"\r","  },\r","  \"OrderedByAddress\": {\r","    \"CompanyName\": \"Warehouse 123\",\r","    \"FirstName\": \"WGuy\",\r","    \"LastName\": \"House\",\r","    \"Address1\": \"123 Warehouse St\",\r","    \"Address2\": \"Building A\",\r","    \"City\": \"Shelton\",\r","    \"State\": \"CT\",\r","    \"Country\": \"US\",\r","    \"Zip\": \"06484\",\r","    \"AddressCode\": \"333\",\r","    \"Phone\": \"123-123-1234\",\r","    \"ContactType\": 0,\r","    \"Email\": \"WH@Warehouse.com\"\r","  },\r","  \"ExtendedAttributes\": [\r","    {\r","      \"Name\": \"EXAMPLE\",\r","      \"Value\": \"Portal\"\r","    }\r","  ],\r","  \"TotalAmount\": 0.0,\r","  \"StatusCode\": 0,\r","  \"HandlingAmount\": 0.0,\r","  \"Note\": \"Thank you for shopping at ONLINE!\"\r","}\r","\r","postman.setEnvironmentVariable(\"ShipDetail\", JSON.stringify(asndata, null, '\\t'));\r","postman.setNextRequest(\"Post a Shipment (used to test steps 5-7)\");\r","\r","var invdata ={\r","  \"RemitToAddress\": {\r","    \"CompanyName\": \"RIJENNIFER LEWIS\",\r","    \"FirstName\": \"RemitFName\",\r","    \"LastName\": \"RemitLName\",\r","    \"Address1\": \"RI22 CORPORATE DR\",\r","    \"Address2\": \"RISUITE 206\",\r","    \"City\": \"RIClifton\",\r","    \"State\": \"RINJ\",\r","    \"Country\": \"RIUSA\",\r","    \"Zip\": \"RI12065\",\r","    \"AddressCode\": \"RI1223456789\",\r","    \"Phone\": \"RI123123123\",\r","    \"ContactType\": 0,\r","    \"Email\": \"RIDS@Remit.com\"\r","  },\r","  \"ShipFromAddress\": {\r","    \"ContactType\": 0\r","  },\r","  \"InvoiceLines\": [\r","    {\r","      \"ItemIdentifier\": {\r","        \"SupplierSKU\": \"49-98760\",\r","        \"PartnerSKU\": \"J07874\",\r","        \"UPC\": \"123456789012\"\r","      },\r","      \"Price\": 90.0,\r","      \"PriceCode\": \"WH\",\r","      \"RetailPrice\": 0.0,\r","      \"Cost\": 0.0,\r","      \"MSRP\": 28.0,\r","      \"Description\": \"Spoons\",\r","      \"Discounts\": [],\r","      \"ShipmentInfos\": [],\r","      \"Taxes\": [\r","        {\r","          \"TaxAmount\": 3.20,\r","          \"TaxRate\": 0.0\r","        }\r","      ],\r","      \"Quantity\": 5,\r","      \"QuantityUOM\": \"EA\",\r","      \"LineNumber\": \"1\",\r","      \"Weight\": 0.0,\r","      \"ExtendedAttributes\": [\r","        {\r","          \"Name\": \"Color\",\r","          \"Value\": \"Blue\"\r","        },\r","        {\r","          \"Name\": \"Size\",\r","          \"Value\": \"Size 15\"\r","        }\r","      ]\r","    }\r","  ],\r","  \"InvoiceNumber\": \"INV1778512879\",\r","  \"InvoiceDate\": \"2015-11-05T16:23:30.978Z\",\r","  \"InvoiceTotal\": 50.0,\r","  \"Identifier\": {\r","  },\r","  \"VendorNumber\": \"12345\",\r","  \"PartnerPO\": \"{{RetailerPartnerPO}}\",\r","  \"OrderDate\": \"2015-11-05T16:23:30.978Z\",\r","  \"Discounts\": [\r","    {\r","      \"DiscountPercent\": 2.0,\r","      \"DiscountAmount\": 8.0\r","    }\r","  ],\r","  \"Taxes\": [\r","    {\r","      \"TaxAmount\": 10.0\r","    }\r","  ],\r","  \"PaymentTerm\": {\r","    \"TermsDescription\": \"N60\",\r","    \"PayInNumberOfDays\": 60,\r","    \"DiscountInNumberOfDays\": 30,\r","    \"AvailableDiscount\": 0.0,\r","    \"DueDate\": \"2016-01-14T00:00:00\",\r","    \"DiscountDueDate\": \"2016-01-14T00:00:00\",\r","    \"EffectiveDate\": \"2016-01-14T12:00:00\"\r","  },\r","  \"ShipToAddress\": {\r","    \"CompanyName\": \"STJENNIFER LEWIS\",\r","    \"FirstName\": \"STFName\",\r","    \"LastName\": \"STLName\",\r","    \"Address1\": \"ST22 CORPORATE DR\",\r","    \"Address2\": \"STSUITE 206\",\r","    \"City\": \"STClifton\",\r","    \"State\": \"STNJ\",\r","    \"Country\": \"STUSA\",\r","    \"Zip\": \"ST12065\",\r","    \"AddressCode\": \"ST1223456789\",\r","    \"Phone\": \"ST123123123\",\r","    \"ContactType\": 0,\r","    \"Email\": \"STDS@Remit.com\"\r","  },\r","  \"BillToAddress\": {\r","    \"CompanyName\": \"BT JENNIFER LEWIS\",\r","    \"FirstName\": \"BTFName\",\r","    \"LastName\": \"BTLName\",\r","    \"Title\": \"\",\r","    \"Address1\": \"BT 22 CORPORATE DR\",\r","    \"Address2\": \"BT SUITE 206\",\r","    \"City\": \"BT Clifton\",\r","    \"State\": \"BT NJ\",\r","    \"Country\": \"BT USA\",\r","    \"Zip\": \"BT 12065\",\r","    \"Province\": \"\",\r","    \"AddressCode\": \"BT1223456789\",\r","    \"StateCode\": \"\",\r","    \"Phone\": \"BT 123123123\",\r","    \"ContactID\": \"\",\r","    \"ContactType\": 0,\r","    \"Email\": \"BT DS@Remit.com\",\r","    \"TaxNumber\": \"\",\r","    \"Note\": \"\"\r","  },\r","  \"OrderedByAddress\": {\r","    \"CompanyName\": \"BT JENNIFER LEWIS\",\r","    \"FirstName\": \"BTFName\",\r","    \"LastName\": \"BTLName\",\r","    \"Address1\": \"BT 22 CORPORATE DR\",\r","    \"Address2\": \"BT SUITE 206\",\r","    \"City\": \"BT Clifton\",\r","    \"State\": \"BT NJ\",\r","    \"Country\": \"BT USA\",\r","    \"Zip\": \"BT 12065\",\r","    \"AddressCode\": \"BT1223456789\",\r","    \"Phone\": \"BT 123123123\",\r","    \"ContactType\": 0,\r","    \"Email\": \"BT DS@Remit.com\"\r","  },\r","  \"ExtendedAttributes\": [\r","    {\r","      \"Name\": \"Allowance - ZZZ\",\r","      \"Value\": \"11.90\"\r","    },\r","    {\r","      \"Name\": \"Charge - ZZZ\",\r","      \"Value\": \"20.90\"\r","    }\r","  ],\r","  \"TotalAmount\": 0.0,\r","  \"Currency\": \"USD\",\r","  \"StatusCode\": 0,\r","  \"HandlingAmount\": 4.0,\r","  \"Note\": \"Thank you for shopping at ONLINE!\"\r","}\r","\r","postman.setEnvironmentVariable(\"InvoiceDetail\", JSON.stringify(invdata, null, '\\t'));\r","postman.setNextRequest(\"Post a Invoice (used to test steps 7-10)\");"]}}],"id":"b91a1e8c-64e9-40e6-873a-c94f605db68a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestedShipDate\": \"2016-11-06T12:00:00\",\r\n  \"DoNotShipAfter\": \"2016-11-07T08:51:56\",\r\n  \"RemitToAddress\": {\r\n    \"ContactType\": 0\r\n  },\r\n  \"TypeCode\": \"SA\",\r\n  \"ReleaseNumber\": \"001\",\r\n  \"SalesRequirement\": 0,\r\n  \"ReceiverCompanyId\": {{ReceiverCompanyID}},\r\n  \"OrderLines\": [\r\n    {\r\n      \"ItemIdentifier\": {\r\n        \"SupplierSKU\": \"{{TestSKU1}}\",\r\n        \"PartnerSKU\": \"{{TestPartnerSKU1}}\",\r\n        \"UPC\": \"{{TestUPC1}}\"\r\n      },\r\n      \"Price\": 31.02,\r\n      \"PriceCode\": \"WH\",\r\n      \"RetailPrice\": 47.98,\r\n      \"Description\": \"Test Product Description\",\r\n      \"Discounts\": [\r\n        {\r\n          \"DiscountAmount\": 5.0\r\n        }\r\n      ],\r\n      \"ShipmentInfos\": [\r\n        {\r\n          \"CarrierCode\": \"UPSN\",\r\n          \"ClassCode\": \"UPSN_CG\",\r\n          \"Weight\": 22,\r\n      \"WeightUnit\": \"LB\",\r\n        }\r\n      ],\r\n      \"Taxes\": [\r\n        {\r\n          \"TaxAmount\": 3.20\r\n        }\r\n      ],\r\n      \"IsDropShip\": false,\r\n      \"Quantity\": 5,\r\n      \"QuantityUOM\": \"EA\",\r\n      \"LineNumber\": \"1\",\r\n      \"Weight\": 22.0,\r\n      \"Note\": \"Product is Fragile\",\r\n      \"ExtendedAttributes\": [\r\n        {\r\n          \"Name\": \"Color\",\r\n          \"Value\": \"Blue\"\r\n        },\r\n        {\r\n          \"Name\": \"Gift Message\",\r\n          \"Value\": \"Get well soon!\"\r\n        },\r\n        {\r\n          \"Name\": \"Item Level Message\",\r\n          \"Value\": \"MONOGRAM = DAS\"\r\n        },\r\n        {\r\n          \"Name\": \"Size\",\r\n          \"Value\": \"SIZE 15\"\r\n        },\r\n        {\r\n          \"Name\": \"GiftWrap\",\r\n          \"Value\": \"1\"\r\n        },\r\n        {\r\n          \"Name\": \"MiscCharge\",\r\n          \"Value\": \"10.10\"\r\n        },\r\n        {\r\n          \"Name\": \"CustomerDiscount\",\r\n          \"Value\": \"11.90\"\r\n        },\r\n        {\r\n          \"Name\": \"CustomerShipping\",\r\n          \"Value\": \"2.91\"\r\n        },\r\n        {\r\n          \"Name\": \"CustomerTax\",\r\n          \"Value\": \"3.45\"\r\n        },\r\n        {\r\n          \"Name\": \"CustomerMiscCharge\",\r\n          \"Value\": \"1.00\"\r\n        },\r\n        {\r\n          \"Name\": \"SpecialInstructions\",\r\n          \"Value\": \"Mark as FRAGILE\"\r\n        },\r\n        {\r\n          \"Name\": \"MiscItemIdentifier\",\r\n          \"Value\": \"SK000001\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"Identifier\": {\r\n  },\r\n  \"OrderNumber\": \"CO{{RetailerPartnerPO}}\",\r\n  \"VendorNumber\": \"V12345\",\r\n  \"CustomerNumber\": \"C444\",\r\n  \"PartnerPO\": \"{{RetailerPartnerPO}}\",\r\n  \"Discounts\": [\r\n    {\r\n      \"DiscountCode\": \"0001883\",\r\n      \"DiscountPercent\": 1.0,\r\n      \"DiscountAmount\": 5.0\r\n    }\r\n  ],\r\n  \"Taxes\": [\r\n    {\r\n      \"TaxAmount\": 3.0\r\n    }\r\n  ],\r\n  \"PaymentTerm\": {\r\n    \"PayInNumberOfDays\": 30,\r\n    \"DiscountInNumberOfDays\": 10,\r\n    \"AvailableDiscount\": 4.0,\r\n    \"DueDate\": \"2016-12-01\",\r\n    \"DiscountDueDate\": \"2016-11-11\"\r\n  },\r\n  \"ShipmentInfos\": [\r\n    {\r\n      \"CarrierCode\": \"UPSN\",\r\n      \"ClassCode\": \"UPSN_CG\",\r\n      \"ServiceLevelCode\": \"CG\"\r\n    }\r\n  ],\r\n  \"ShipToAddress\": {\r\n    \"CompanyName\": \"Merchant Co\",\r\n    \"FirstName\": \"Jerry\",\r\n    \"LastName\": \"Only\",\r\n    \"Address1\": \"111 Merchant Lane\",\r\n    \"Address2\": \"Apt 1\",\r\n    \"City\": \"Yonkers\",\r\n    \"State\": \"NY\",\r\n    \"Country\": \"USA\",\r\n    \"Zip\": \"10704\",\r\n    \"AddressCode\": \"1234567890\",\r\n    \"Phone\": \"111-222-3333\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"Merchant@co.com\"\r\n  },\r\n  \"BillToAddress\": {\r\n    \"CompanyName\": \"Merchant Co\",\r\n    \"FirstName\": \"Jerry\",\r\n    \"LastName\": \"Only\",\r\n    \"Title\": \"\",\r\n    \"Address1\": \"111 Merchant Lane\",\r\n    \"Address2\": \"Apt 1\",\r\n    \"City\": \"Yonkers\",\r\n    \"State\": \"NY\",\r\n    \"Country\": \"USA\",\r\n    \"Zip\": \"10704\",\r\n    \"Province\": \"\",\r\n    \"AddressCode\": \"1234567890\",\r\n    \"StateCode\": \"\",\r\n    \"Phone\": \"111-222-3333\",\r\n    \"ContactID\": \"\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"Merchant@co.com\",\r\n    \"TaxNumber\": \"\",\r\n    \"Note\": \"\"\r\n  },\r\n  \"OrderedByAddress\": {\r\n    \"CompanyName\": \"Merchant Co\",\r\n    \"FirstName\": \"Jerry\",\r\n    \"LastName\": \"Only\",\r\n    \"Address1\": \"111 Merchant Lane\",\r\n    \"Address2\": \"Apt 1\",\r\n    \"City\": \"Yonkers\",\r\n    \"State\": \"NY\",\r\n    \"Country\": \"USA\",\r\n    \"Zip\": \"10704\",\r\n    \"AddressCode\": \"1234567890\",\r\n    \"Phone\": \"111-222-3333\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"Merchant@co.com\"\r\n  },\r\n  \"ExtendedAttributes\": [\r\n    {\r\n      \"Name\": \"StoreNumber\",\r\n      \"Value\": \"12345\"\r\n    },\r\n    {\r\n      \"Name\": \"InternalOrderNumber\",\r\n      \"Value\": \"ORD555444\"\r\n    },\r\n    {\r\n      \"Name\": \"GiftWrap\",\r\n      \"Value\": \"1\"\r\n    },\r\n    {\r\n      \"Name\": \"MiscCharge\",\r\n      \"Value\": \"12.12\"\r\n    },\r\n    {\r\n      \"Name\": \"CustomerDiscount\",\r\n      \"Value\": \"13.13\"\r\n    },\r\n    {\r\n      \"Name\": \"CustomerShipping\",\r\n      \"Value\": \"5.00\"\r\n    },\r\n    {\r\n      \"Name\": \"CustomerTax\",\r\n      \"Value\": \"12.95\"\r\n    },\r\n    {\r\n      \"Name\": \"CustomerMiscCharge\",\r\n      \"Value\": \"9.99\"\r\n    },\r\n    {\r\n      \"Name\": \"CustomerOrderDate\",\r\n      \"Value\": \"2016-11-14\"\r\n    }\r\n  ],\r\n  \"Currency\": \"USD\",\r\n  \"HandlingAmount\": 15.0,\r\n  \"Note\": \"Get well soon!\"\r\n}"},"url":"https://stage.commerceapi.io/api/v1/Orders?subscription-key={{subscription-key}}","description":"<p>Here you will be posting a purchase order that will be getting sent to your supplier. Your supplier can receive the data in a variety of different formats which out of the box will follow the <a href=\"http://help.logicbroker.com/hc/en-us/categories/200150379-Document-Standards\">logicbroker document standards</a>. If your supplier requires a custom format you will need to contact <strong><a href=\"mailto:support@logicbroker.com\">support@logicbroker.com</a></strong> and custom mapping can be done.\n<br />\n<br /></p>\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection the body will be pre-filled using global variables for you to update within the order.</p>\n<p>Below is a list of variables you will need to enter:</p>\n<p><strong>{{ReceiverCompanyID}}</strong> - This will be your supplier's account number which can be retrieved under the <a href=\"https://stageportal.logicbroker.com/scorecards/\">Supplier Management Page</a>. By default the order will get created sending to your Account Number.</p>\n<p><strong>{{RetailerPartnerPO}}</strong> - this will automatically pre-fill and will increment for every new order you create.</p>\n<p>The order will get created and will sit in the <strong>Submitted (100)</strong> status. When the file is successfully picked up by your trading partner it will be moved to <strong>Ready to Acknowledge (150)</strong> status. At this point the order will stay at this status until the supplier submits a returned Acknowledgement, accepting, cancelling or backordering the items. \n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>Below is a sample JSON body. For additional details on the fields and their meanings <a href=\"http://help.logicbroker.com/hc/en-us/articles/213276663-Order\">please see this article.</a>\nAlso, here is the link to our <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Order/Order_CreateSalesOrder\">API reference</a>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Orders"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"654bd4e5-9a82-404c-880c-84a5e2fa19d1","name":"Create an Order - Invalid Body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"Order\": \"TESTING123\"\r\n}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Orders?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Orders"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"*","description":""},{"name":"content-length","key":"content-length","value":"119","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 24 Apr 2018 19:43:23 GMT","description":""},{"name":"server","key":"server","value":"Microsoft-IIS/8.5","description":""},{"name":"strict-transport-security","key":"strict-transport-security","value":"max-age=31536000","description":""},{"name":"x-powered-by","key":"x-powered-by","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"400\",\"Message\":\"Bad Request\",\"Body\":[{\"Parameter\":\"SalesOrder.OrderLine\",\"Errors\":[\"OrderLine is required\"]}]}"},{"id":"dbec0200-113a-4d1f-b3ad-ba00482e0a1e","name":"Step 1: Create an Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestedShipDate\": \"2016-11-06T12:00:00\",\r\n  \"DoNotShipAfter\": \"2016-11-07T08:51:56\",\r\n  \"RemitToAddress\": {\r\n    \"ContactType\": 0\r\n  },\r\n  \"TypeCode\": \"SA\",\r\n  \"ReleaseNumber\": \"001\",\r\n  \"SalesRequirement\": 0,\r\n  \"ReceiverCompanyId\": {{ReceiverCompanyID}},\r\n  \"OrderLines\": [\r\n    {\r\n      \"ItemIdentifier\": {\r\n        \"SupplierSKU\": \"{{TestSKU1}}\",\r\n        \"PartnerSKU\": \"{{TestPartnerSKU1}}\",\r\n        \"UPC\": \"{{TestUPC1}}\"\r\n      },\r\n      \"Price\": 31.02,\r\n      \"PriceCode\": \"WH\",\r\n      \"RetailPrice\": 47.98,\r\n      \"Description\": \"Test Product Description\",\r\n      \"Discounts\": [\r\n        {\r\n          \"DiscountAmount\": 5.0\r\n        }\r\n      ],\r\n      \"ShipmentInfos\": [\r\n        {\r\n          \"CarrierCode\": \"UPSN\",\r\n          \"ClassCode\": \"UPSN_CG\",\r\n          \"Weight\": 22,\r\n      \"WeightUnit\": \"LB\"\r\n        }\r\n      ],\r\n      \"Taxes\": [\r\n        {\r\n          \"TaxAmount\": 3.20\r\n        }\r\n      ],\r\n      \"IsDropShip\": false,\r\n      \"Quantity\": 5,\r\n      \"QuantityUOM\": \"EA\",\r\n      \"LineNumber\": \"1\",\r\n      \"Weight\": 22.0,\r\n      \"Note\": \"Product is Fragile\",\r\n      \"ExtendedAttributes\": [\r\n        {\r\n          \"Name\": \"Color\",\r\n          \"Value\": \"Blue\"\r\n        },\r\n        {\r\n          \"Name\": \"Gift Message\",\r\n          \"Value\": \"Get well soon!\"\r\n        },\r\n        {\r\n          \"Name\": \"Item Level Message\",\r\n          \"Value\": \"MONOGRAM = DAS\"\r\n        },\r\n        {\r\n          \"Name\": \"Size\",\r\n          \"Value\": \"SIZE 15\"\r\n        },\r\n        {\r\n          \"Name\": \"GiftWrap\",\r\n          \"Value\": \"1\"\r\n        },\r\n        {\r\n          \"Name\": \"MiscCharge\",\r\n          \"Value\": \"10.10\"\r\n        },\r\n        {\r\n          \"Name\": \"CustomerDiscount\",\r\n          \"Value\": \"11.90\"\r\n        },\r\n        {\r\n          \"Name\": \"CustomerShipping\",\r\n          \"Value\": \"2.91\"\r\n        },\r\n        {\r\n          \"Name\": \"CustomerTax\",\r\n          \"Value\": \"3.45\"\r\n        },\r\n        {\r\n          \"Name\": \"CustomerMiscCharge\",\r\n          \"Value\": \"1.00\"\r\n        },\r\n        {\r\n          \"Name\": \"SpecialInstructions\",\r\n          \"Value\": \"Mark as FRAGILE\"\r\n        },\r\n        {\r\n          \"Name\": \"MiscItemIdentifier\",\r\n          \"Value\": \"SK000001\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"Identifier\": {\r\n  },\r\n  \"OrderNumber\": \"CO{{RetailerPartnerPO}}\",\r\n  \"VendorNumber\": \"V12345\",\r\n  \"CustomerNumber\": \"C444\",\r\n  \"PartnerPO\": \"{{RetailerPartnerPO}}\",\r\n  \"Discounts\": [\r\n    {\r\n      \"DiscountCode\": \"0001883\",\r\n      \"DiscountPercent\": 1.0,\r\n      \"DiscountAmount\": 5.0\r\n    }\r\n  ],\r\n  \"Taxes\": [\r\n    {\r\n      \"TaxAmount\": 3.0\r\n    }\r\n  ],\r\n  \"PaymentTerm\": {\r\n    \"PayInNumberOfDays\": 30,\r\n    \"DiscountInNumberOfDays\": 10,\r\n    \"AvailableDiscount\": 4.0,\r\n    \"DueDate\": \"2016-12-01\",\r\n    \"DiscountDueDate\": \"2016-11-11\"\r\n  },\r\n  \"ShipmentInfos\": [\r\n    {\r\n      \"CarrierCode\": \"UPSN\",\r\n      \"ClassCode\": \"UPSN_CG\",\r\n      \"ServiceLevelCode\": \"CG\"\r\n    }\r\n  ],\r\n  \"ShipToAddress\": {\r\n    \"CompanyName\": \"Merchant Co\",\r\n    \"FirstName\": \"Jerry\",\r\n    \"LastName\": \"Only\",\r\n    \"Address1\": \"111 Merchant Lane\",\r\n    \"Address2\": \"Apt 1\",\r\n    \"City\": \"Yonkers\",\r\n    \"State\": \"NY\",\r\n    \"Country\": \"USA\",\r\n    \"Zip\": \"10704\",\r\n    \"AddressCode\": \"1234567890\",\r\n    \"Phone\": \"111-222-3333\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"Merchant@co.com\"\r\n  },\r\n  \"BillToAddress\": {\r\n    \"CompanyName\": \"Merchant Co\",\r\n    \"FirstName\": \"Jerry\",\r\n    \"LastName\": \"Only\",\r\n    \"Title\": \"\",\r\n    \"Address1\": \"111 Merchant Lane\",\r\n    \"Address2\": \"Apt 1\",\r\n    \"City\": \"Yonkers\",\r\n    \"State\": \"NY\",\r\n    \"Country\": \"USA\",\r\n    \"Zip\": \"10704\",\r\n    \"Province\": \"\",\r\n    \"AddressCode\": \"1234567890\",\r\n    \"StateCode\": \"\",\r\n    \"Phone\": \"111-222-3333\",\r\n    \"ContactID\": \"\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"Merchant@co.com\",\r\n    \"TaxNumber\": \"\",\r\n    \"Note\": \"\"\r\n  },\r\n  \"OrderedByAddress\": {\r\n    \"CompanyName\": \"Merchant Co\",\r\n    \"FirstName\": \"Jerry\",\r\n    \"LastName\": \"Only\",\r\n    \"Address1\": \"111 Merchant Lane\",\r\n    \"Address2\": \"Apt 1\",\r\n    \"City\": \"Yonkers\",\r\n    \"State\": \"NY\",\r\n    \"Country\": \"USA\",\r\n    \"Zip\": \"10704\",\r\n    \"AddressCode\": \"1234567890\",\r\n    \"Phone\": \"111-222-3333\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"Merchant@co.com\"\r\n  },\r\n  \"ExtendedAttributes\": [\r\n    {\r\n      \"Name\": \"StoreNumber\",\r\n      \"Value\": \"12345\"\r\n    },\r\n    {\r\n      \"Name\": \"InternalOrderNumber\",\r\n      \"Value\": \"ORD555444\"\r\n    },\r\n    {\r\n      \"Name\": \"GiftWrap\",\r\n      \"Value\": \"1\"\r\n    },\r\n    {\r\n      \"Name\": \"MiscCharge\",\r\n      \"Value\": \"12.12\"\r\n    },\r\n    {\r\n      \"Name\": \"CustomerDiscount\",\r\n      \"Value\": \"13.13\"\r\n    },\r\n    {\r\n      \"Name\": \"CustomerShipping\",\r\n      \"Value\": \"5.00\"\r\n    },\r\n    {\r\n      \"Name\": \"CustomerTax\",\r\n      \"Value\": \"12.95\"\r\n    },\r\n    {\r\n      \"Name\": \"CustomerMiscCharge\",\r\n      \"Value\": \"9.99\"\r\n    },\r\n    {\r\n      \"Name\": \"CustomerOrderDate\",\r\n      \"Value\": \"2016-11-14\"\r\n    }\r\n  ],\r\n  \"Currency\": \"USD\",\r\n  \"HandlingAmount\": 15.0,\r\n  \"Note\": \"Get well soon!\"\r\n}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Orders?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Orders"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b91a1e8c-64e9-40e6-873a-c94f605db68a"},{"name":"Step 2: Search and Get Acknowledgement Details","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","var RetailerAckKey = jsonData.Records[0].Identifier.LogicbrokerKey;","","postman.setEnvironmentVariable(\"RetailerAckKey\", RetailerAckKey);"]}}],"id":"79613c0e-605c-4213-9149-e5e36c09806b","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v2/Acknowledgements/Ready?subscription-key={{subscription-key}}","description":"<p>In this step you will be looking for any new acknowledgements that were posted by your supplier. When proceeding to retrieve the list of new acknowledgements you will need to make sure they are in status <strong>Submitted (100)</strong> or for some suppliers another status indicating it is ready to be received.</p>\n<p>Once you have the list of acknowledgements, it is important to save the <strong>LogicbrokerKey</strong> as this will be used in the next step to update the status.</p>\n<p>If all items are cancelled the order status will move to <strong>Cancelled (1100)</strong> automatically upon receiving the document. The order will update to <strong>Ready to Ship (500)</strong> once the acknowledgemnt is successfully picked up by your system and updated to the <strong>Processed (200)</strong> status. That is shown in the <strong>Step 4: Update Acknowledgement Status</strong>.\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Acknowledgement/Acknowledgement_SearchAcks\">API reference</a>. </p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>filters.partnerPO</b><br /></td><td>Used to filter on the originating PO you want to update. This will provide only acknowledgements with the partnerPO (PO Number) passed on the originating order.</td><td>string</td></tr></tbody></table>***Note it is recommended to pull all documents based on with no filter to get all \"Ready\" documents. If you are processing many orders you will be calling the endpoint many times and will approach your API limit.**<p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>To properly test and retrieve a list of acknowledgements you will need to have you or your supplier post one. You can post one quickly through this collection, by using <strong>Post an Acknowledgement (Used to test steps 2-4)</strong> or by logging into the portal and submitting one. \n<br />\n<br />\nFirst navigate to your order by going to <strong>Order Management</strong> or searching in the <strong>Search documents</strong> box. </p>\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Dashboard-Orders.png\" />\n\n<p>Once you find the order you can click into the details and then under <strong>More Actions</strong> click <strong>Acknowledge/Cancel</strong>. This is the same process your supplier will follow.</p>\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Order-Details-New-Acknowledgement.png\" />\n\n<p>Now enter the details to Accept, Reject or Backorder the item and click <strong>Submit</strong>. </p>\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Acknowledgment-Submit-Ack.png\" />\n\n<p>Running this step in the collection will provide you with the acknowledgement details that your trading partner or you created.\n<br />\n<br />\nFor more details on the response and fields/properties purposes see this <a href=\"http://help.logicbroker.com/hc/en-us/articles/211755046-Acknowledgment\">article in the help center</a>. Following the standard in the article will help you anticipate what is to be expected when receiving new acknowledgements and how to handle those fields.</p>\n","urlObject":{"protocol":"https","path":["api","v2","Acknowledgements","Ready"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"094602d1-663b-4d53-bdab-5947ef7bcdce","name":"Acknowledgement_JSON_Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v2/Acknowledgements?filters.partnerPO={{RetailerPartnerPO}}&filters.status=100&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v2","Acknowledgements"],"query":[{"key":"filters.partnerPO","value":"{{RetailerPartnerPO}}"},{"key":"filters.status","value":"100"},{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 20 Mar 2017 18:54:37 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Records\":[{\"ShipToAddress\":{\"CompanyName\":\"Merchant Co\",\"FirstName\":\"Jerry\",\"LastName\":\"Only\",\"Address1\":\"111 Merchant Lane\",\"Address2\":\"Apt 1\",\"City\":\"Yonkers\",\"State\":\"NY\",\"Country\":\"USA\",\"Zip\":\"10704\",\"AddressCode\":\"1234567890\",\"Phone\":\"111-222-3333\",\"ContactType\":0,\"Email\":\"Merchant@co.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - ShipToName\",\"Value\":\"Jerry Only\"},{\"Name\":\"PER - Ship To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Ship To Address Qualifier\",\"Value\":\"ST\"},{\"Name\":\"N103 - Ship To Address Code Qualifier\",\"Value\":\"92\"},{\"Name\":\"PER01_ShipTo_EM\",\"Value\":\"Merchant@co.com\"},{\"Name\":\"PER02_ShipTo_TE\",\"Value\":\"111-222-3333\"}]},\"BillToAddress\":{\"CompanyName\":\"Merchant Co\",\"FirstName\":\"Jerry\",\"LastName\":\"Only\",\"Address1\":\"111 Merchant Lane\",\"Address2\":\"Apt 1\",\"City\":\"Yonkers\",\"State\":\"NY\",\"Country\":\"USA\",\"Zip\":\"10704\",\"AddressCode\":\"1234567890\",\"Phone\":\"111-222-3333\",\"ContactType\":0,\"Email\":\"Merchant@co.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - BillToName\",\"Value\":\"Jerry Only\"},{\"Name\":\"PER - Bill To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Bill To Address Qualifier\",\"Value\":\"BT\"},{\"Name\":\"PER02_BillTo_TE\",\"Value\":\"111-222-3333\"},{\"Name\":\"PER01_BillTo_EM\",\"Value\":\"Merchant@co.com\"},{\"Name\":\"N103 - Bill To Address Code Qualifier\",\"Value\":\"92\"}]},\"ShipFromAddress\":{\"ContactType\":0},\"Identifier\":{\"SourceKey\":\"ACK_CO100055522\",\"LogicbrokerKey\":\"60780\",\"LinkKey\":\"1703046089\"},\"Type\":0,\"AcknowledgementNumber\":\"ACK_CO100055522\",\"OrderNumber\":\"CO100055522\",\"OrderDate\":\"0001-01-01T00:00:00\",\"PartnerPO\":\"100055522\",\"VendorNumber\":\"V12345\",\"AcknowledgementDate\":\"2017-03-20T00:00:00\",\"ScheduledShipDate\":\"0001-01-01T00:00:00\",\"DocumentDate\":\"2017-03-20T18:51:51.077\",\"SenderCompanyId\":100988,\"ReceiverCompanyId\":101085,\"StatusCode\":100,\"ExtendedAttributes\":[{\"Name\":\"StoreNumber\",\"Value\":\"12345\"},{\"Name\":\"InternalOrderNumber\",\"Value\":\"ORD555444\"},{\"Name\":\"GiftWrap\",\"Value\":\"1\"},{\"Name\":\"MiscCharge\",\"Value\":\"12.12\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"13.13\"},{\"Name\":\"CustomerShipping\",\"Value\":\"5.00\"},{\"Name\":\"CustomerTax\",\"Value\":\"12.95\"},{\"Name\":\"CustomerMiscCharge\",\"Value\":\"9.99\"},{\"Name\":\"CustomerOrderDate\",\"Value\":\"2016-11-14\"},{\"Name\":\"SourceSystem\",\"Value\":\"Portal\",\"Section\":\"Documents\"},{\"Name\":\"LinkKey\",\"Value\":\"1703046089\",\"Section\":\"Documents\"},{\"Name\":\"Key\",\"Value\":\"\",\"Section\":\"Documents\"},{\"Name\":\"PER - OrderedByName\",\"Value\":\"Jerry Only\"},{\"Name\":\"BEG01_Purpose\",\"Value\":\"00\"},{\"Name\":\"REFID - CO\",\"Value\":\"CO100055522\"},{\"Name\":\"REFID - IA\",\"Value\":\"V12345\"},{\"Name\":\"REFID - PD\",\"Value\":\"0001883\"},{\"Name\":\"DTMID - 010\",\"Value\":\"2016-11-06\"},{\"Name\":\"N9_L1\",\"Value\":\"GFT\"},{\"Name\":\"N9_L1_MSG\",\"Value\":\"Get well soon!\",\"Section\":\"0\"},{\"Name\":\"Allowance - C310\",\"Value\":\"5.0\"},{\"Name\":\"Charge - G821\",\"Value\":\"1500\"},{\"Name\":\"Charge - H850\",\"Value\":\"3.0\"},{\"Name\":\"ITD01 - Terms Type Code\",\"Value\":\"14\"},{\"Name\":\"ITD02 - Terms Basis Code\",\"Value\":\"ZZ\"},{\"Name\":\"TD502 - ID Code Qualifier\",\"Value\":\"2\"},{\"Name\":\"REFID - ST\",\"Value\":\"12345\"},{\"Name\":\"REFID - X9\",\"Value\":\"ORD555444\"},{\"Name\":\"REFID - IT\",\"Value\":\"C444\"},{\"Name\":\"REFID - ZZ\",\"Value\":\"1\"},{\"Name\":\"DTMID - 806\",\"Value\":\"2016-11-14\"},{\"Name\":\"Charge - ZZZZ\",\"Value\":\"12.12\"},{\"Name\":\"N - C310\",\"Value\":\"13.13\"},{\"Name\":\"N - G821\",\"Value\":\"5.00\"},{\"Name\":\"N - H850\",\"Value\":\"12.95\"},{\"Name\":\"N - ZZZZ\",\"Value\":\"9.99\"}],\"AckLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"V-123123\",\"PartnerSKU\":\"P-123123\",\"UPC\":\"123456789012\"},\"Type\":1,\"Quantity\":5,\"QuantityCancelled\":0,\"QuantityBackordered\":0,\"Price\":31.02,\"PriceCode\":\"WH\",\"RetailPrice\":47.98,\"QuantityUOM\":\"EA\",\"Description\":\"Test Product Description\",\"LineNumber\":\"1\",\"ExtendedAttributes\":[{\"Name\":\"Color\",\"Value\":\"Blue\"},{\"Name\":\"Gift Message\",\"Value\":\"Get well soon!\"},{\"Name\":\"Item Level Message\",\"Value\":\"MONOGRAM = DAS\"},{\"Name\":\"Size\",\"Value\":\"SIZE 15\"},{\"Name\":\"GiftWrap\",\"Value\":\"1\"},{\"Name\":\"MiscCharge\",\"Value\":\"10.10\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"11.90\"},{\"Name\":\"CustomerShipping\",\"Value\":\"2.91\"},{\"Name\":\"CustomerTax\",\"Value\":\"3.45\"},{\"Name\":\"CustomerMiscCharge\",\"Value\":\"1.00\"},{\"Name\":\"SpecialInstructions\",\"Value\":\"Mark as FRAGILE\"},{\"Name\":\"MiscItemIdentifier\",\"Value\":\"SK000001\"},{\"Name\":\"Carrier-0\",\"Value\":\"UPSN\"},{\"Name\":\"UPC - Product Qualifier-3\",\"Value\":\"UP\"},{\"Name\":\"Supplier SKU - Product Qualifier-1\",\"Value\":\"VN\"},{\"Name\":\"Partner SKU - Product Qualifier-2\",\"Value\":\"IN\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.98\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_SIZ\",\"Value\":\"SIZE 15\"},{\"Name\":\"PID_35\",\"Value\":\"Blue\"},{\"Name\":\"Allowance - C310\",\"Value\":\"500\"},{\"Name\":\"Charge - H850\",\"Value\":\"320\"},{\"Name\":\"N9_L1_MSG01\",\"Value\":\"Get well soon!\"},{\"Name\":\"N9_L1\",\"Value\":\"GFT\"},{\"Name\":\"PID_ZZZ\",\"Value\":\"SK000001\"},{\"Name\":\"REFID - ZZ\",\"Value\":\"1\"},{\"Name\":\"Charge - ZZZZ\",\"Value\":\"10.10\"},{\"Name\":\"N - C310\",\"Value\":\"11.90\"},{\"Name\":\"N - G821\",\"Value\":\"2.91\"},{\"Name\":\"N - H850\",\"Value\":\"3.45\"},{\"Name\":\"N - ZZZZ\",\"Value\":\"1.00\"},{\"Name\":\"N9_ZZ\",\"Value\":\"Special Instructions\"},{\"Name\":\"N9_ZZ_MSG01\",\"Value\":\"Mark as FRAGILE\"}]}]}],\"TotalPages\":1,\"CurrentPage\":0,\"TotalRecords\":1}"},{"id":"80ff73a9-9480-4f5e-85f7-8465fcefbd96","name":"Acknowledgement_XML_Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml"}],"url":{"raw":"https://stage.commerceapi.io/api/v2/Acknowledgements?filters.partnerPO={{RetailerPartnerPO}}&filters.status=100&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v2","Acknowledgements"],"query":[{"key":"filters.partnerPO","value":"{{RetailerPartnerPO}}"},{"key":"filters.status","value":"100"},{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/xml; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Thu, 22 Jun 2017 16:21:09 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"<ArrayResponseOfAcknowledgement xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"><Records><Acknowledgement><ShipToAddress><CompanyName>Merchant Co</CompanyName><FirstName>Jerry</FirstName><LastName>Only</LastName><Address1>111 Merchant Lane</Address1><Address2>Apt 1</Address2><City>Yonkers</City><State>NY</State><Country>USA</Country><Zip>10704</Zip><AddressCode>1234567890</AddressCode><Phone>111-222-3333</Phone><ContactType>Customer</ContactType><Email>Merchant@co.com</Email><ExtendedAttributes><ExtendedAttribute><Name>PER - ShipToName</Name><Value>Jerry Only</Value></ExtendedAttribute><ExtendedAttribute><Name>PER - Ship To Address Contact Qualifier</Name><Value>IC</Value></ExtendedAttribute><ExtendedAttribute><Name>N101 - Ship To Address Qualifier</Name><Value>ST</Value></ExtendedAttribute><ExtendedAttribute><Name>N103 - Ship To Address Code Qualifier</Name><Value>92</Value></ExtendedAttribute><ExtendedAttribute><Name>PER01_ShipTo_EM</Name><Value>Merchant@co.com</Value></ExtendedAttribute><ExtendedAttribute><Name>PER02_ShipTo_TE</Name><Value>111-222-3333</Value></ExtendedAttribute></ExtendedAttributes></ShipToAddress><BillToAddress><CompanyName>Merchant Co</CompanyName><FirstName>Jerry</FirstName><LastName>Only</LastName><Address1>111 Merchant Lane</Address1><Address2>Apt 1</Address2><City>Yonkers</City><State>NY</State><Country>USA</Country><Zip>10704</Zip><AddressCode>1234567890</AddressCode><Phone>111-222-3333</Phone><ContactType>Customer</ContactType><Email>Merchant@co.com</Email><ExtendedAttributes><ExtendedAttribute><Name>PER - BillToName</Name><Value>Jerry Only</Value></ExtendedAttribute><ExtendedAttribute><Name>PER - Bill To Address Contact Qualifier</Name><Value>IC</Value></ExtendedAttribute><ExtendedAttribute><Name>N101 - Bill To Address Qualifier</Name><Value>BT</Value></ExtendedAttribute><ExtendedAttribute><Name>PER02_BillTo_TE</Name><Value>111-222-3333</Value></ExtendedAttribute><ExtendedAttribute><Name>PER01_BillTo_EM</Name><Value>Merchant@co.com</Value></ExtendedAttribute><ExtendedAttribute><Name>N103 - Bill To Address Code Qualifier</Name><Value>92</Value></ExtendedAttribute></ExtendedAttributes></BillToAddress><ShipFromAddress><ContactType>Customer</ContactType></ShipFromAddress><Identifier><SourceKey>ACK_CO100055522</SourceKey><LogicbrokerKey>60780</LogicbrokerKey><LinkKey>1703046089</LinkKey></Identifier><Type>AcknowledgeWithChange</Type><AcknowledgementNumber>ACK_CO100055522</AcknowledgementNumber><OrderNumber>CO100055522</OrderNumber><OrderDate>0001-01-01T00:00:00</OrderDate><PartnerPO>100055522</PartnerPO><VendorNumber>V12345</VendorNumber><AcknowledgementDate>2017-03-20T00:00:00</AcknowledgementDate><ScheduledShipDate>0001-01-01T00:00:00</ScheduledShipDate><DocumentDate>2017-03-20T18:51:51.077</DocumentDate><SenderCompanyId>100988</SenderCompanyId><ReceiverCompanyId>101085</ReceiverCompanyId><StatusCode>1000</StatusCode><ExtendedAttributes><ExtendedAttribute><Name>StoreNumber</Name><Value>12345</Value></ExtendedAttribute><ExtendedAttribute><Name>InternalOrderNumber</Name><Value>ORD555444</Value></ExtendedAttribute><ExtendedAttribute><Name>GiftWrap</Name><Value>1</Value></ExtendedAttribute><ExtendedAttribute><Name>MiscCharge</Name><Value>12.12</Value></ExtendedAttribute><ExtendedAttribute><Name>CustomerDiscount</Name><Value>13.13</Value></ExtendedAttribute><ExtendedAttribute><Name>CustomerShipping</Name><Value>5.00</Value></ExtendedAttribute><ExtendedAttribute><Name>CustomerTax</Name><Value>12.95</Value></ExtendedAttribute><ExtendedAttribute><Name>CustomerMiscCharge</Name><Value>9.99</Value></ExtendedAttribute><ExtendedAttribute><Name>CustomerOrderDate</Name><Value>2016-11-14</Value></ExtendedAttribute><ExtendedAttribute><Name>SourceSystem</Name><Value>Portal</Value><Section>Documents</Section></ExtendedAttribute><ExtendedAttribute><Name>LinkKey</Name><Value>1703046089</Value><Section>Documents</Section></ExtendedAttribute><ExtendedAttribute><Name>Key</Name><Value /><Section>Documents</Section></ExtendedAttribute><ExtendedAttribute><Name>PER - OrderedByName</Name><Value>Jerry Only</Value></ExtendedAttribute><ExtendedAttribute><Name>BEG01_Purpose</Name><Value>00</Value></ExtendedAttribute><ExtendedAttribute><Name>REFID - CO</Name><Value>CO100055522</Value></ExtendedAttribute><ExtendedAttribute><Name>REFID - IA</Name><Value>V12345</Value></ExtendedAttribute><ExtendedAttribute><Name>REFID - PD</Name><Value>0001883</Value></ExtendedAttribute><ExtendedAttribute><Name>DTMID - 010</Name><Value>2016-11-06</Value></ExtendedAttribute><ExtendedAttribute><Name>N9_L1</Name><Value>GFT</Value></ExtendedAttribute><ExtendedAttribute><Name>N9_L1_MSG</Name><Value>Get well soon!</Value><Section>0</Section></ExtendedAttribute><ExtendedAttribute><Name>Allowance - C310</Name><Value>5.0</Value></ExtendedAttribute><ExtendedAttribute><Name>Charge - G821</Name><Value>1500</Value></ExtendedAttribute><ExtendedAttribute><Name>Charge - H850</Name><Value>3.0</Value></ExtendedAttribute><ExtendedAttribute><Name>ITD01 - Terms Type Code</Name><Value>14</Value></ExtendedAttribute><ExtendedAttribute><Name>ITD02 - Terms Basis Code</Name><Value>ZZ</Value></ExtendedAttribute><ExtendedAttribute><Name>TD502 - ID Code Qualifier</Name><Value>2</Value></ExtendedAttribute><ExtendedAttribute><Name>REFID - ST</Name><Value>12345</Value></ExtendedAttribute><ExtendedAttribute><Name>REFID - X9</Name><Value>ORD555444</Value></ExtendedAttribute><ExtendedAttribute><Name>REFID - IT</Name><Value>C444</Value></ExtendedAttribute><ExtendedAttribute><Name>REFID - ZZ</Name><Value>1</Value></ExtendedAttribute><ExtendedAttribute><Name>DTMID - 806</Name><Value>2016-11-14</Value></ExtendedAttribute><ExtendedAttribute><Name>Charge - ZZZZ</Name><Value>12.12</Value></ExtendedAttribute><ExtendedAttribute><Name>N - C310</Name><Value>13.13</Value></ExtendedAttribute><ExtendedAttribute><Name>N - G821</Name><Value>5.00</Value></ExtendedAttribute><ExtendedAttribute><Name>N - H850</Name><Value>12.95</Value></ExtendedAttribute><ExtendedAttribute><Name>N - ZZZZ</Name><Value>9.99</Value></ExtendedAttribute></ExtendedAttributes><AckLines><AckLine><ItemIdentifier><SupplierSKU>V-123123</SupplierSKU><PartnerSKU>P-123123</PartnerSKU><UPC>123456789012</UPC></ItemIdentifier><Type>Acknowledge</Type><Quantity>5</Quantity><QuantityCancelled>0</QuantityCancelled><QuantityBackordered>0</QuantityBackordered><Price>31.02</Price><PriceCode>WH</PriceCode><RetailPrice>47.98</RetailPrice><QuantityUOM>EA</QuantityUOM><Description>Test Product Description</Description><LineNumber>1</LineNumber><ExtendedAttributes><ExtendedAttribute><Name>Color</Name><Value>Blue</Value></ExtendedAttribute><ExtendedAttribute><Name>Gift Message</Name><Value>Get well soon!</Value></ExtendedAttribute><ExtendedAttribute><Name>Item Level Message</Name><Value>MONOGRAM = DAS</Value></ExtendedAttribute><ExtendedAttribute><Name>Size</Name><Value>SIZE 15</Value></ExtendedAttribute><ExtendedAttribute><Name>GiftWrap</Name><Value>1</Value></ExtendedAttribute><ExtendedAttribute><Name>MiscCharge</Name><Value>10.10</Value></ExtendedAttribute><ExtendedAttribute><Name>CustomerDiscount</Name><Value>11.90</Value></ExtendedAttribute><ExtendedAttribute><Name>CustomerShipping</Name><Value>2.91</Value></ExtendedAttribute><ExtendedAttribute><Name>CustomerTax</Name><Value>3.45</Value></ExtendedAttribute><ExtendedAttribute><Name>CustomerMiscCharge</Name><Value>1.00</Value></ExtendedAttribute><ExtendedAttribute><Name>SpecialInstructions</Name><Value>Mark as FRAGILE</Value></ExtendedAttribute><ExtendedAttribute><Name>MiscItemIdentifier</Name><Value>SK000001</Value></ExtendedAttribute><ExtendedAttribute><Name>Carrier-0</Name><Value>UPSN</Value></ExtendedAttribute><ExtendedAttribute><Name>UPC - Product Qualifier-3</Name><Value>UP</Value></ExtendedAttribute><ExtendedAttribute><Name>Supplier SKU - Product Qualifier-1</Name><Value>VN</Value></ExtendedAttribute><ExtendedAttribute><Name>Partner SKU - Product Qualifier-2</Name><Value>IN</Value></ExtendedAttribute><ExtendedAttribute><Name>CTP_RTL</Name><Value>47.98</Value></ExtendedAttribute><ExtendedAttribute><Name>DescriptionQualifier</Name><Value>08</Value></ExtendedAttribute><ExtendedAttribute><Name>PID_SIZ</Name><Value>SIZE 15</Value></ExtendedAttribute><ExtendedAttribute><Name>PID_35</Name><Value>Blue</Value></ExtendedAttribute><ExtendedAttribute><Name>Allowance - C310</Name><Value>500</Value></ExtendedAttribute><ExtendedAttribute><Name>Charge - H850</Name><Value>320</Value></ExtendedAttribute><ExtendedAttribute><Name>N9_L1_MSG01</Name><Value>Get well soon!</Value></ExtendedAttribute><ExtendedAttribute><Name>N9_L1</Name><Value>GFT</Value></ExtendedAttribute><ExtendedAttribute><Name>PID_ZZZ</Name><Value>SK000001</Value></ExtendedAttribute><ExtendedAttribute><Name>REFID - ZZ</Name><Value>1</Value></ExtendedAttribute><ExtendedAttribute><Name>Charge - ZZZZ</Name><Value>10.10</Value></ExtendedAttribute><ExtendedAttribute><Name>N - C310</Name><Value>11.90</Value></ExtendedAttribute><ExtendedAttribute><Name>N - G821</Name><Value>2.91</Value></ExtendedAttribute><ExtendedAttribute><Name>N - H850</Name><Value>3.45</Value></ExtendedAttribute><ExtendedAttribute><Name>N - ZZZZ</Name><Value>1.00</Value></ExtendedAttribute><ExtendedAttribute><Name>N9_ZZ</Name><Value>Special Instructions</Value></ExtendedAttribute><ExtendedAttribute><Name>N9_ZZ_MSG01</Name><Value>Mark as FRAGILE</Value></ExtendedAttribute></ExtendedAttributes></AckLine></AckLines></Acknowledgement></Records><TotalPages>1</TotalPages><CurrentPage>0</CurrentPage><TotalRecords>1</TotalRecords></ArrayResponseOfAcknowledgement>"}],"_postman_id":"79613c0e-605c-4213-9149-e5e36c09806b"},{"name":"Step 3: Update Acknowledgement Status","id":"2fca1a40-b0b6-41c4-8942-dbce7a86ac0d","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"Status\": \"Processing\",\r\n  \"LogicbrokerKeys\": [\r\n    \"{{RetailerAckKey}}\"\r\n  ]\r\n}"},"url":"https://stage.commerceapi.io/api/v2/Acknowledgements/Status?subscription-key={{subscription-key}}","description":"<p>After all acknowledgement information is gathered and successfully processed to your internal system, it is recommended to update the acknowledgement status. This will prevent re-pulling it down and let the supplier know that the document was successfully picked up. <a href=\"http://help.logicbroker.com/hc/en-us/articles/211064943-Acknowledgement-Standard-Statuses\">Here is an article on standard acknowledgement statuses.</a>\n<br />\n<br />\nIt is recommended after picking up acknowledgements using the <strong>/Acknowledgements/Ready</strong> endpoint and moving the status to <strong>200 (Processing)</strong>. The Status string can be either the status code (200) or the label (Processing).\n<br />\nWhen the document is moved to <strong>Processing</strong> the originating order status will automatically update to <strong>Ready to Ship (500)</strong> and in turn will move the acknowledgement document to <strong>Complete (1000)</strong> as well. \n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Acknowledgement/Acknowledgement_BulkUpdateStatus\">API reference</a>. </p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>Request</b><br /></td><td>Please refer to the request body shown to the right. You can add multiple LogicbrokerKeys to update multiple documents with one call. This is the preferred method as it will limit the amount of calls needed to make to our endpoint.   </td><td>body</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>Within the collection, again the <strong>RetailerAckKey</strong> will persist as a global variable from Step 3 and the <strong>Status</strong> will update for that document with a defaulted value of <strong>200 (Processed)</strong>.\n<br />\n<br />\nOn successfully updating the Acknowledgement status you will receive a status code of <strong>200</strong>. There will be no body response.\nIn addition, after the acknowlegment status is moved to 200, logicbroker will automatically update the status of the originating order to <strong>500 (Ready to Ship)</strong> and the acknowledgement will move to <strong>1000 (Complete)</strong></p>\n","urlObject":{"protocol":"https","path":["api","v2","Acknowledgements","Status"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"0dda27c8-3c89-47f0-b6c6-ac91d246b6e3","name":"Step 3: Update Acknowledgement Status","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"Status\": \"Processing\",\r\n  \"LogicbrokerKeys\": [\r\n    \"{{RetailerAckKey}}\"\r\n  ]\r\n}"},"url":{"raw":"https://stage.commerceapi.io/api/v2/Acknowledgements/Status?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v2","Acknowledgements","Status"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"*","description":""},{"name":"cache-control","key":"cache-control","value":"private","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Wed, 17 Jan 2018 18:17:34 GMT","description":""},{"name":"server","key":"server","value":"Microsoft-IIS/8.5","description":""},{"name":"strict-transport-security","key":"strict-transport-security","value":"max-age=31536000","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-aspnet-version","key":"x-aspnet-version","value":"4.0.30319","description":""},{"name":"x-logicbroker-request-limit","key":"x-logicbroker-request-limit","value":"99","description":""},{"name":"x-powered-by","key":"x-powered-by","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Records\":[\"112626\"],\"TotalPages\":1,\"CurrentPage\":0,\"TotalRecords\":1}"}],"_postman_id":"2fca1a40-b0b6-41c4-8942-dbce7a86ac0d"},{"name":"Step 4: Search and Get Shipment Details","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","var RetailerASNKey = jsonData.Records[0].Identifier.LogicbrokerKey;","","postman.setEnvironmentVariable(\"RetailerASNKey\", RetailerASNKey);"]}}],"id":"15efe75e-bf5a-4ae5-9458-9de5c04b8e76","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v2/Shipments/Ready?subscription-key={{subscription-key}}","description":"<p>In this step you will be looking for any new shipments that were posted by your supplier. When proceeding to retrieve the list of new shipments you will need to make sure they are in status <strong>Submitted (100)</strong> or for some suppliers another status indicating it is ready to be received.</p>\n<p>Once you have the list of shipments, it is important to save the <strong>LogicbrokerKey</strong> as this will be used in the next step to update the status.\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Shipment/Shipment_SearchShipment\">API reference</a>. </p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>filters.partnerPO</b><br /></td><td>Used to filter on the originating PO you want to update. This will provide only shipments with the partnerPO (PO Number) passed on the originating order.</td><td>string</td></tr></tbody></table>***Note it is recommended to pull all \"Ready\" documents. If you are processing many orders you will be calling the endpoint many times and will approach your API limit.**<p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>To properly test and retrieve a list of shipments you will need to have you or your supplier post one. You can post one quickly through this collection, by using <strong>Post an Shipment (Used to test steps 5-7)</strong> or by logging into the portal and submitting one. \n<br />\n<br />\nFirst navigate to your order by going to <strong>Order Management</strong> or searching in the <strong>Search documents</strong> box. </p>\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Dashboard-Orders.png\" />\n\n<p>Once you find the order you can click <strong>New Shipment</strong>. This is the same process your supplier will follow.</p>\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Order-Details-New-Shipment.png\" />\n\n<p>Now enter the pertinent details such as Ship from address, box dimensions, and tracking numbers then click <strong>Submit</strong>. </p>\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Shipment-Submit-Shipment.png\" />\n\n<p>Running this step in the collection will provide you with the shipment details that your trading partner or you created.\n<br />\n<br />\nFor more details on the response and fields/properties purposes see this <a href=\"http://help.logicbroker.com/hc/en-us/articles/213276723-Shipment\">article in the help center</a>. Following the standard in the article will help you anticipate what is to be expected when receiving new shipments and how to handle those fields. </p>\n","urlObject":{"protocol":"https","path":["api","v2","Shipments","Ready"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"9c20abc7-4848-4e79-8f9e-af37f2484b47","name":"ASNresponse","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v2/Shipments?Filters.partnerPO={{RetailerPartnerPO}}&Filters.status=100&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v2","Shipments"],"query":[{"key":"Filters.partnerPO","value":"{{RetailerPartnerPO}}"},{"key":"Filters.status","value":"100"},{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Mon, 20 Mar 2017 18:59:39 GMT","description":"The date and time that the message was sent"},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Records\":[{\"ShipFromAddress\":{\"CompanyName\":\"Logicbroker\",\"Address1\":\"1000 Bridgeport Avenue\",\"Address2\":\"\",\"City\":\"Shelton\",\"State\":\"CT\",\"Country\":\"US\",\"Zip\":\"06484\",\"ContactType\":0},\"ShipmentDate\":\"2017-03-20T00:00:00\",\"ShipmentNumber\":\"100055522\",\"ShipmentLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"V-123123\",\"PartnerSKU\":\"P-123123\",\"UPC\":\"123456789012\"},\"Price\":31.02,\"PriceCode\":\"WH\",\"RetailPrice\":47.98,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Test Product Description\",\"Discounts\":[{\"DiscountPercent\":0.0,\"DiscountAmount\":5.0}],\"ShipmentInfos\":[{\"DateShipped\":\"2017-03-20T12:00:00\",\"CarrierCode\":\"UPSN\",\"ClassCode\":\"UPSN-ND\",\"ServiceLevelCode\":\"ND\",\"ServiceLevelDescription\":\"UPS Next Day Air\",\"TrackingNumber\":\"123123123\",\"Qty\":5,\"ContainerType\":\"Box\",\"Height\":4.0,\"Width\":4.0,\"Length\":4.0,\"Weight\":10.0,\"WeightUnit\":\"lb\"}],\"Taxes\":[{\"TaxAmount\":3.20,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":5,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":22.0,\"Note\":\"Product is Fragile\",\"ExtendedAttributes\":[{\"Name\":\"Color\",\"Value\":\"Blue\"},{\"Name\":\"Gift Message\",\"Value\":\"Get well soon!\"},{\"Name\":\"Item Level Message\",\"Value\":\"MONOGRAM = DAS\"},{\"Name\":\"Size\",\"Value\":\"SIZE 15\"},{\"Name\":\"GiftWrap\",\"Value\":\"1\"},{\"Name\":\"MiscCharge\",\"Value\":\"10.10\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"11.90\"},{\"Name\":\"CustomerShipping\",\"Value\":\"2.91\"},{\"Name\":\"CustomerTax\",\"Value\":\"3.45\"},{\"Name\":\"CustomerMiscCharge\",\"Value\":\"1.00\"},{\"Name\":\"SpecialInstructions\",\"Value\":\"Mark as FRAGILE\"},{\"Name\":\"MiscItemIdentifier\",\"Value\":\"SK000001\"},{\"Name\":\"UPC - Product Qualifier-3\",\"Value\":\"UP\"},{\"Name\":\"Supplier SKU - Product Qualifier-1\",\"Value\":\"VN\"},{\"Name\":\"Partner SKU - Product Qualifier-2\",\"Value\":\"IN\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.98\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_SIZ\",\"Value\":\"SIZE 15\"},{\"Name\":\"PID_35\",\"Value\":\"Blue\"},{\"Name\":\"Allowance - C310\",\"Value\":\"500\"},{\"Name\":\"Charge - H850\",\"Value\":\"320\"},{\"Name\":\"N9_L1_MSG01\",\"Value\":\"Get well soon!\"},{\"Name\":\"N9_L1\",\"Value\":\"GFT\"},{\"Name\":\"PID_ZZZ\",\"Value\":\"SK000001\"},{\"Name\":\"REFID - ZZ\",\"Value\":\"1\"},{\"Name\":\"Charge - ZZZZ\",\"Value\":\"10.10\"},{\"Name\":\"N - C310\",\"Value\":\"11.90\"},{\"Name\":\"N - G821\",\"Value\":\"2.91\"},{\"Name\":\"N - H850\",\"Value\":\"3.45\"},{\"Name\":\"N - ZZZZ\",\"Value\":\"1.00\"},{\"Name\":\"N9_ZZ\",\"Value\":\"Special Instructions\"},{\"Name\":\"N9_ZZ_MSG01\",\"Value\":\"Mark as FRAGILE\"}]}],\"Identifier\":{\"SourceKey\":\"100055522\",\"LogicbrokerKey\":\"60781\",\"LinkKey\":\"1703046089\"},\"OrderNumber\":\"CO100055522\",\"VendorNumber\":\"V12345\",\"CustomerNumber\":\"C444\",\"PartnerPO\":\"100055522\",\"DocumentDate\":\"2017-03-20T18:58:15.717\",\"SenderCompanyId\":100988,\"ReceiverCompanyId\":101085,\"Discounts\":[{\"DiscountCode\":\"0001883\",\"DiscountPercent\":1.0,\"DiscountAmount\":5.0}],\"Taxes\":[{}],\"PaymentTerm\":{\"PayInNumberOfDays\":30,\"DiscountInNumberOfDays\":10,\"AvailableDiscount\":4.0,\"DueDate\":\"2016-12-01T00:00:00\",\"DiscountDueDate\":\"2016-11-11T00:00:00\",\"EffectiveDate\":\"0001-01-01T12:00:00\"},\"ShipmentInfos\":[{\"CarrierCode\":\"UPSN-ND\",\"TrackingNumber\":\"123123123\"}],\"ShipToAddress\":{\"CompanyName\":\"Merchant Co\",\"FirstName\":\"Jerry\",\"LastName\":\"Only\",\"Address1\":\"111 Merchant Lane\",\"Address2\":\"Apt 1\",\"City\":\"Yonkers\",\"State\":\"NY\",\"Country\":\"USA\",\"Zip\":\"10704\",\"AddressCode\":\"1234567890\",\"Phone\":\"111-222-3333\",\"ContactType\":0,\"Email\":\"Merchant@co.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - ShipToName\",\"Value\":\"Jerry Only\"},{\"Name\":\"PER - Ship To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Ship To Address Qualifier\",\"Value\":\"ST\"},{\"Name\":\"N103 - Ship To Address Code Qualifier\",\"Value\":\"92\"},{\"Name\":\"PER01_ShipTo_EM\",\"Value\":\"Merchant@co.com\"},{\"Name\":\"PER02_ShipTo_TE\",\"Value\":\"111-222-3333\"}]},\"BillToAddress\":{\"CompanyName\":\"Merchant Co\",\"FirstName\":\"Jerry\",\"LastName\":\"Only\",\"Title\":\"\",\"Address1\":\"111 Merchant Lane\",\"Address2\":\"Apt 1\",\"City\":\"Yonkers\",\"State\":\"NY\",\"Country\":\"USA\",\"Zip\":\"10704\",\"Province\":\"\",\"AddressCode\":\"1234567890\",\"StateCode\":\"\",\"Phone\":\"111-222-3333\",\"ContactID\":\"\",\"ContactType\":0,\"Email\":\"Merchant@co.com\",\"TaxNumber\":\"\",\"Note\":\"\",\"ExtendedAttributes\":[{\"Name\":\"PER - BillToName\",\"Value\":\"Jerry Only\"},{\"Name\":\"PER - Bill To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Bill To Address Qualifier\",\"Value\":\"BT\"},{\"Name\":\"PER02_BillTo_TE\",\"Value\":\"111-222-3333\"},{\"Name\":\"PER01_BillTo_EM\",\"Value\":\"Merchant@co.com\"},{\"Name\":\"N103 - Bill To Address Code Qualifier\",\"Value\":\"92\"}]},\"OrderedByAddress\":{\"CompanyName\":\"Merchant Co\",\"FirstName\":\"Jerry\",\"LastName\":\"Only\",\"Address1\":\"111 Merchant Lane\",\"Address2\":\"Apt 1\",\"City\":\"Yonkers\",\"State\":\"NY\",\"Country\":\"USA\",\"Zip\":\"10704\",\"AddressCode\":\"1234567890\",\"Phone\":\"111-222-3333\",\"ContactType\":0,\"Email\":\"Merchant@co.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - Ordered By Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Ordered By Address Qualifier\",\"Value\":\"OB\"},{\"Name\":\"N103 - Ordered By Address Code Qualifier\",\"Value\":\"92\"},{\"Name\":\"PER01_OrderedBy_EM\",\"Value\":\"Merchant@co.com\"},{\"Name\":\"PER02_OrderedBy_TE\",\"Value\":\"111-222-3333\"}]},\"ExtendedAttributes\":[{\"Name\":\"StoreNumber\",\"Value\":\"12345\"},{\"Name\":\"InternalOrderNumber\",\"Value\":\"ORD555444\"},{\"Name\":\"GiftWrap\",\"Value\":\"1\"},{\"Name\":\"MiscCharge\",\"Value\":\"12.12\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"13.13\"},{\"Name\":\"CustomerShipping\",\"Value\":\"5.00\"},{\"Name\":\"CustomerTax\",\"Value\":\"12.95\"},{\"Name\":\"CustomerMiscCharge\",\"Value\":\"9.99\"},{\"Name\":\"CustomerOrderDate\",\"Value\":\"2016-11-14\"},{\"Name\":\"SourceSystem\",\"Value\":\"Portal\",\"Section\":\"Documents\"},{\"Name\":\"LinkKey\",\"Value\":\"1703046089\",\"Section\":\"Documents\"},{\"Name\":\"Key\",\"Value\":\"\",\"Section\":\"Documents\"},{\"Name\":\"PER - OrderedByName\",\"Value\":\"Jerry Only\"},{\"Name\":\"BEG01_Purpose\",\"Value\":\"00\"},{\"Name\":\"REFID - CO\",\"Value\":\"CO100055522\"},{\"Name\":\"REFID - IA\",\"Value\":\"V12345\"},{\"Name\":\"REFID - PD\",\"Value\":\"0001883\"},{\"Name\":\"DTMID - 010\",\"Value\":\"2016-11-06\"},{\"Name\":\"N9_L1\",\"Value\":\"GFT\"},{\"Name\":\"N9_L1_MSG\",\"Value\":\"Get well soon!\",\"Section\":\"0\"},{\"Name\":\"Allowance - C310\",\"Value\":\"5.0\"},{\"Name\":\"Charge - G821\",\"Value\":\"1500\"},{\"Name\":\"Charge - H850\",\"Value\":\"3.0\"},{\"Name\":\"ITD01 - Terms Type Code\",\"Value\":\"14\"},{\"Name\":\"ITD02 - Terms Basis Code\",\"Value\":\"ZZ\"},{\"Name\":\"TD502 - ID Code Qualifier\",\"Value\":\"2\"},{\"Name\":\"REFID - ST\",\"Value\":\"12345\"},{\"Name\":\"REFID - X9\",\"Value\":\"ORD555444\"},{\"Name\":\"REFID - IT\",\"Value\":\"C444\"},{\"Name\":\"REFID - ZZ\",\"Value\":\"1\"},{\"Name\":\"DTMID - 806\",\"Value\":\"2016-11-14\"},{\"Name\":\"Charge - ZZZZ\",\"Value\":\"12.12\"},{\"Name\":\"N - C310\",\"Value\":\"13.13\"},{\"Name\":\"N - G821\",\"Value\":\"5.00\"},{\"Name\":\"N - H850\",\"Value\":\"12.95\"},{\"Name\":\"N - ZZZZ\",\"Value\":\"9.99\"}],\"TotalAmount\":0.0,\"Currency\":\"USD\",\"StatusCode\":100,\"HandlingAmount\":15.0,\"Note\":\"Get well soon!\"}],\"TotalPages\":1,\"CurrentPage\":0,\"TotalRecords\":1}"}],"_postman_id":"15efe75e-bf5a-4ae5-9458-9de5c04b8e76"},{"name":"Step 5: Update shipment status","id":"8d8361d3-06c0-4765-bd9c-ca1e5b36b331","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"Status\": \"Processing\",\r\n  \"LogicbrokerKeys\": [\r\n    \"{{RetailerASNKey}}\"\r\n  ]\r\n}"},"url":"https://stage.commerceapi.io/api/v2/Shipments/Status/?subscription-key={{subscription-key}}","description":"<p>After all shipment information is gathered and successfully processed to your internal system, it is recommended to update the shipment status. This will prevent re-pulling it down and let the supplier know that the document was successfully picked up. <a href=\"http://help.logicbroker.com/hc/en-us/articles/209415666-Shipment-Standard-Statuses\">Here is an article on standard shipment statuses.</a>\n<br />\n<br />\nIt is recommended after picking up shipments using the <strong>/Shipments/Ready</strong> endpoint the status get moved to <strong>Processing (200)</strong>. The Status string can be either the status code (200) or the label (Processing). \n<br />\nAt the <strong>Processing (200)</strong> status, the order will get updated with the quantities shipped and if all items on the order have been shipped the status will move to <strong>Ready to Invoice (600)</strong> and the shipment status will move to <strong>Complete (1000)</strong>. \n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Shipment/Shipment_BulkUpdateStatus\">API reference</a>. </p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>Request</b><br /></td><td>Please refer to the request body shown to the right. You can add multiple LogicbrokerKeys to update multiple documents with one call. This is the preferred method as it will limit the amount of calls needed to make to our endpoint.   </td><td>body</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>Within the collection, again the <strong>RetailerASNKey</strong> will persist as a global variable from Step 5 and the <strong>Status</strong> will update for that document with a defaulted value of <strong>200 (Processed)</strong> .\n<br />\n<br />\nOn successfully updating the shipment status you will receive a status code of <strong>200</strong>. There will be no body response.\nIn addition, after the shipment status is moved to 200, logicbroker will automatically update the status of the originating order to <strong>600 (Ready to Invoice)</strong> and the shipment will move to <strong>1000 (Complete)</strong></p>\n","urlObject":{"protocol":"https","path":["api","v2","Shipments","Status",""],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"83194b6f-bb21-43e3-b542-833f41f61f25","name":"Step 5: Update shipment status","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"Status\": \"Processing\",\r\n  \"LogicbrokerKeys\": [\r\n    \"{{RetailerASNKey}}\"\r\n  ]\r\n}"},"url":{"raw":"https://stage.commerceapi.io/api/v2/Shipments/Status/?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v2","Shipments","Status",""],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"*","description":""},{"name":"cache-control","key":"cache-control","value":"private","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Wed, 17 Jan 2018 18:40:37 GMT","description":""},{"name":"server","key":"server","value":"Microsoft-IIS/8.5","description":""},{"name":"strict-transport-security","key":"strict-transport-security","value":"max-age=31536000","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-aspnet-version","key":"x-aspnet-version","value":"4.0.30319","description":""},{"name":"x-logicbroker-request-limit","key":"x-logicbroker-request-limit","value":"99","description":""},{"name":"x-powered-by","key":"x-powered-by","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Records\":[\"105598\"],\"TotalPages\":1,\"CurrentPage\":0,\"TotalRecords\":1}"}],"_postman_id":"8d8361d3-06c0-4765-bd9c-ca1e5b36b331"},{"name":"Step 6: Search and Get Invoice Details","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","var RetailerInvKey = jsonData.Records[0].Identifier.LogicbrokerKey;","","postman.setEnvironmentVariable(\"RetailerInvKey\", RetailerInvKey);"]}}],"id":"cda58659-cdaa-42cd-b9fb-9a97bf17362c","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v2/Invoices/Ready?subscription-key={{subscription-key}}","description":"<p>In this step you will be looking for any new invoices that were posted by your supplier. When proceeding to retrieve the list of new invoices you will need to make sure they are in status <strong>Submitted (100)</strong> or for some retailers another status indicating it is ready to be received.</p>\n<p>Once you have the list of invoices, it is important to save the <strong>LogicbrokerKey</strong> as this will be used in the next step to update the document's status.\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Invoice/Invoice_SearchInvoice\">API reference</a>. </p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>filters.partnerPO</b><br /></td><td>Used to filter on the originating PO you want to update. This will provide only invoices with the partnerPO (PO Number) passed on the originating order.</td><td>string</td></tr></tbody></table>***Note it is recommended to pull all \"Ready\" documents only. If you are processing many orders you will be calling the endpoint many times and will approach your API limit.**<p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>To properly test and retrieve a list of invoices you will need to have you or your supplier post one. You can post one quickly through this collection, by using <strong>Post a Invoice (Used to test steps 7-10)</strong> or by logging into the portal and submitting one. \n<br />\n<br />\nFirst navigate to your order by going to <strong>Order Management</strong> or searching in the <strong>Search documents</strong> box. </p>\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Dashboard-Orders.png\" />\n\n<p>Once you find the order you can click <strong>New Invoice</strong>. This is the same process your supplier will follow.</p>\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Order-Details-New-Invoice.png\" />\n\n<p>Now enter the pertinent details such as Invoice Number, Date, Qty, and Prices, then click <strong>Submit</strong>. </p>\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Invoice-Submit-Invoice.png\" />\n\n\n<p>Running this step in the collection will provide you with the invoice details that your trading partner or you created.\n<br />\n<br />\nFor more details on the response and fields/properties purposes see this <a href=\"http://help.logicbroker.com/hc/en-us/articles/213276783-Invoice\">article in the help center</a>. Following the standard in the article will help you anticipate what is to be expected when receiving new invoices and how to handle those fields.</p>\n","urlObject":{"protocol":"https","path":["api","v2","Invoices","Ready"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"41be081b-483b-4f6e-9f21-e304157bd060","name":"invoicedetail","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v2/Invoices?filters.partnerPO={{RetailerPartnerPO}}&filters.status=100&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v2","Invoices"],"query":[{"key":"filters.partnerPO","value":"{{RetailerPartnerPO}}"},{"key":"filters.status","value":"100"},{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 20 Mar 2017 19:04:15 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Records\":[{\"RemitToAddress\":{\"ContactType\":0},\"ShipFromAddress\":{\"ContactType\":0},\"InvoiceLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"V-123123\",\"PartnerSKU\":\"P-123123\",\"UPC\":\"123456789012\"},\"Price\":31.02,\"PriceCode\":\"WH\",\"RetailPrice\":47.98,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Test Product Description\",\"Discounts\":[{\"DiscountPercent\":0.0,\"DiscountAmount\":5.0}],\"ShipmentInfos\":[{\"CarrierCode\":\"UPSN\",\"ClassCode\":\"UPSN_CG\",\"Weight\":22.0,\"WeightUnit\":\"LB\"}],\"Taxes\":[{\"TaxAmount\":3.2,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":5,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":22.0,\"Note\":\"Product is Fragile\",\"ExtendedAttributes\":[{\"Name\":\"Color\",\"Value\":\"Blue\"},{\"Name\":\"Gift Message\",\"Value\":\"Get well soon!\"},{\"Name\":\"Item Level Message\",\"Value\":\"MONOGRAM = DAS\"},{\"Name\":\"Size\",\"Value\":\"SIZE 15\"},{\"Name\":\"GiftWrap\",\"Value\":\"1\"},{\"Name\":\"MiscCharge\",\"Value\":\"10.10\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"11.90\"},{\"Name\":\"CustomerShipping\",\"Value\":\"2.91\"},{\"Name\":\"CustomerTax\",\"Value\":\"3.45\"},{\"Name\":\"CustomerMiscCharge\",\"Value\":\"1.00\"},{\"Name\":\"SpecialInstructions\",\"Value\":\"Mark as FRAGILE\"},{\"Name\":\"MiscItemIdentifier\",\"Value\":\"SK000001\"},{\"Name\":\"Carrier-0\",\"Value\":\"UPSN\"},{\"Name\":\"UPC - Product Qualifier-3\",\"Value\":\"UP\"},{\"Name\":\"Supplier SKU - Product Qualifier-1\",\"Value\":\"VN\"},{\"Name\":\"Partner SKU - Product Qualifier-2\",\"Value\":\"IN\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.98\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_SIZ\",\"Value\":\"SIZE 15\"},{\"Name\":\"PID_35\",\"Value\":\"Blue\"},{\"Name\":\"Allowance - C310\",\"Value\":\"500\"},{\"Name\":\"Charge - H850\",\"Value\":\"320\"},{\"Name\":\"N9_L1_MSG01\",\"Value\":\"Get well soon!\"},{\"Name\":\"N9_L1\",\"Value\":\"GFT\"},{\"Name\":\"PID_ZZZ\",\"Value\":\"SK000001\"},{\"Name\":\"REFID - ZZ\",\"Value\":\"1\"},{\"Name\":\"Charge - ZZZZ\",\"Value\":\"10.10\"},{\"Name\":\"N - C310\",\"Value\":\"11.90\"},{\"Name\":\"N - G821\",\"Value\":\"2.91\"},{\"Name\":\"N - H850\",\"Value\":\"3.45\"},{\"Name\":\"N - ZZZZ\",\"Value\":\"1.00\"},{\"Name\":\"N9_ZZ\",\"Value\":\"Special Instructions\"},{\"Name\":\"N9_ZZ_MSG01\",\"Value\":\"Mark as FRAGILE\"},{\"Name\":\"QtyCancelled\",\"Value\":\"0\",\"Section\":\"LogicBroker\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"5\",\"Section\":\"Order\"}]}],\"InvoiceNumber\":\"INV100055522\",\"InvoiceDate\":\"2017-03-20T00:00:00\",\"InvoiceTotal\":168.1,\"Identifier\":{\"SourceKey\":\"INV100055522\",\"LogicbrokerKey\":\"60782\",\"LinkKey\":\"1703046089\"},\"OrderNumber\":\"CO100055522\",\"VendorNumber\":\"V12345\",\"CustomerNumber\":\"C444\",\"PartnerPO\":\"100055522\",\"OrderDate\":\"0001-01-01T00:00:00\",\"DocumentDate\":\"2017-03-20T19:02:55.51\",\"SenderCompanyId\":100988,\"ReceiverCompanyId\":101085,\"Discounts\":[{\"DiscountCode\":\"0001883\",\"DiscountPercent\":1.0,\"DiscountAmount\":5.0}],\"Taxes\":[{\"TaxAmount\":3.0,\"TaxRate\":0.0}],\"PaymentTerm\":{\"PayInNumberOfDays\":0,\"DiscountInNumberOfDays\":0,\"AvailableDiscount\":0.0,\"DueDate\":\"0001-01-01T00:00:00\",\"DiscountDueDate\":\"0001-01-01T00:00:00\",\"EffectiveDate\":\"0001-01-01T12:00:00\"},\"ShipmentInfos\":[{\"CarrierCode\":\"UPSN\",\"ServiceLevelCode\":\"CG\"}],\"ShipToAddress\":{\"CompanyName\":\"Merchant Co\",\"FirstName\":\"Jerry\",\"LastName\":\"Only\",\"Address1\":\"111 Merchant Lane\",\"Address2\":\"Apt 1\",\"City\":\"Yonkers\",\"State\":\"NY\",\"Country\":\"USA\",\"Zip\":\"10704\",\"AddressCode\":\"1234567890\",\"Phone\":\"111-222-3333\",\"ContactType\":0,\"Email\":\"Merchant@co.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - ShipToName\",\"Value\":\"Jerry Only\"},{\"Name\":\"PER - Ship To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Ship To Address Qualifier\",\"Value\":\"ST\"},{\"Name\":\"N103 - Ship To Address Code Qualifier\",\"Value\":\"92\"},{\"Name\":\"PER01_ShipTo_EM\",\"Value\":\"Merchant@co.com\"},{\"Name\":\"PER02_ShipTo_TE\",\"Value\":\"111-222-3333\"}]},\"BillToAddress\":{\"CompanyName\":\"Merchant Co\",\"FirstName\":\"Jerry\",\"LastName\":\"Only\",\"Title\":\"\",\"Address1\":\"111 Merchant Lane\",\"Address2\":\"Apt 1\",\"City\":\"Yonkers\",\"State\":\"NY\",\"Country\":\"USA\",\"Zip\":\"10704\",\"Province\":\"\",\"AddressCode\":\"1234567890\",\"StateCode\":\"\",\"Phone\":\"111-222-3333\",\"ContactID\":\"\",\"ContactType\":0,\"Email\":\"Merchant@co.com\",\"TaxNumber\":\"\",\"Note\":\"\",\"ExtendedAttributes\":[{\"Name\":\"PER - BillToName\",\"Value\":\"Jerry Only\"},{\"Name\":\"PER - Bill To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Bill To Address Qualifier\",\"Value\":\"BT\"},{\"Name\":\"PER02_BillTo_TE\",\"Value\":\"111-222-3333\"},{\"Name\":\"PER01_BillTo_EM\",\"Value\":\"Merchant@co.com\"},{\"Name\":\"N103 - Bill To Address Code Qualifier\",\"Value\":\"92\"}]},\"OrderedByAddress\":{\"CompanyName\":\"Merchant Co\",\"FirstName\":\"Jerry\",\"LastName\":\"Only\",\"Address1\":\"111 Merchant Lane\",\"Address2\":\"Apt 1\",\"City\":\"Yonkers\",\"State\":\"NY\",\"Country\":\"USA\",\"Zip\":\"10704\",\"AddressCode\":\"1234567890\",\"Phone\":\"111-222-3333\",\"ContactType\":0,\"Email\":\"Merchant@co.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - Ordered By Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Ordered By Address Qualifier\",\"Value\":\"OB\"},{\"Name\":\"N103 - Ordered By Address Code Qualifier\",\"Value\":\"92\"},{\"Name\":\"PER01_OrderedBy_EM\",\"Value\":\"Merchant@co.com\"},{\"Name\":\"PER02_OrderedBy_TE\",\"Value\":\"111-222-3333\"}]},\"ExtendedAttributes\":[{\"Name\":\"StoreNumber\",\"Value\":\"12345\"},{\"Name\":\"InternalOrderNumber\",\"Value\":\"ORD555444\"},{\"Name\":\"GiftWrap\",\"Value\":\"1\"},{\"Name\":\"MiscCharge\",\"Value\":\"12.12\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"13.13\"},{\"Name\":\"CustomerShipping\",\"Value\":\"5.00\"},{\"Name\":\"CustomerTax\",\"Value\":\"12.95\"},{\"Name\":\"CustomerMiscCharge\",\"Value\":\"9.99\"},{\"Name\":\"CustomerOrderDate\",\"Value\":\"2016-11-14\"},{\"Name\":\"SourceSystem\",\"Value\":\"Portal\",\"Section\":\"Documents\"},{\"Name\":\"LinkKey\",\"Value\":\"1703046089\",\"Section\":\"Documents\"},{\"Name\":\"Key\",\"Value\":\"\",\"Section\":\"Documents\"},{\"Name\":\"PER - OrderedByName\",\"Value\":\"Jerry Only\"},{\"Name\":\"BEG01_Purpose\",\"Value\":\"00\"},{\"Name\":\"REFID - CO\",\"Value\":\"CO100055522\"},{\"Name\":\"REFID - IA\",\"Value\":\"V12345\"},{\"Name\":\"REFID - PD\",\"Value\":\"0001883\"},{\"Name\":\"DTMID - 010\",\"Value\":\"2016-11-06\"},{\"Name\":\"N9_L1\",\"Value\":\"GFT\"},{\"Name\":\"N9_L1_MSG\",\"Value\":\"Get well soon!\",\"Section\":\"0\"},{\"Name\":\"Allowance - C310\",\"Value\":\"5.0\"},{\"Name\":\"Charge - G821\",\"Value\":\"1500\"},{\"Name\":\"Charge - H850\",\"Value\":\"3.0\"},{\"Name\":\"ITD01 - Terms Type Code\",\"Value\":\"14\"},{\"Name\":\"ITD02 - Terms Basis Code\",\"Value\":\"ZZ\"},{\"Name\":\"TD502 - ID Code Qualifier\",\"Value\":\"2\"},{\"Name\":\"REFID - ST\",\"Value\":\"12345\"},{\"Name\":\"REFID - X9\",\"Value\":\"ORD555444\"},{\"Name\":\"REFID - IT\",\"Value\":\"C444\"},{\"Name\":\"REFID - ZZ\",\"Value\":\"1\"},{\"Name\":\"DTMID - 806\",\"Value\":\"2016-11-14\"},{\"Name\":\"Charge - ZZZZ\",\"Value\":\"12.12\"},{\"Name\":\"N - C310\",\"Value\":\"13.13\"},{\"Name\":\"N - G821\",\"Value\":\"5.00\"},{\"Name\":\"N - H850\",\"Value\":\"12.95\"},{\"Name\":\"N - ZZZZ\",\"Value\":\"9.99\"}],\"TotalAmount\":168.10,\"Currency\":\"USD\",\"StatusCode\":100,\"HandlingAmount\":15.0,\"Note\":\"Get well soon!\"}],\"TotalPages\":1,\"CurrentPage\":0,\"TotalRecords\":1}"}],"_postman_id":"cda58659-cdaa-42cd-b9fb-9a97bf17362c"},{"name":"Step 7: Update Invoice Status","id":"6fd7aa40-f8fe-4490-9305-4db3967398a4","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://stage.commerceapi.io/api/v2/Invoices/Status?subscription-key={{subscription-key}}","description":"<p>After all invoice information is gathered and successfully processed to your internal system, it is recommended to update the invoice status. This will prevent re-pulling it down and let the supplier know that the document was successfully picked up. <a href=\"http://help.logicbroker.com/hc/en-us/articles/209415706-Invoice-Standard-Statuses\">Here is an article on standard invoice statuses.</a>\n<br />\n<br />\nIt is recommended after picking up invoices using the <strong>/Invoices/Ready</strong> endpoint, the status get moved to <strong>Processing (200)</strong>. The Status string can be either the status code (200) or the label (Processing).\n<br />\nAt the <strong>Processing (200)</strong> status, the order will get updated with the quantities invoices and if all items on the order have been shipped the status will move to <strong>Complete (1000)</strong> and the invoice status will move to <strong>Complete (1000)</strong> as well. \n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Invoice/Invoice_BulkUpdateStatus\">API reference</a>. </p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>Request</b><br /></td><td>Please refer to the request body shown to the right. You can add multiple LogicbrokerKeys to update multiple documents with one call. This is the preferred method as it will limit the amount of calls needed to make to our endpoint.   </td><td>body</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>Within the collection, again the <strong>RetailerINVKey</strong> will persist as a global variable from Step 5 and the <strong>Status</strong> will update for that document with a defaulted value of <strong>Processed (200)</strong> .\n<br />\n<br />\nOn successfully updating the shipment status you will receive a status code of <strong>200</strong>. There will be no body response.\nIn addition, after the invoice status is moved to 200, logicbroker will automatically update the status of the originating order to <strong>1000 (Complete)</strong> and the invoice itself will move to <strong>1000 (Complete)</strong> as well.</p>\n","urlObject":{"protocol":"https","path":["api","v2","Invoices","Status"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"1c90ac7f-ceb2-4211-9a6a-18ad275aa343","name":"Step 7: Update Invoice Status","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"Status\": \"Processing\",\r\n  \"LogicbrokerKeys\": [\r\n    \"{{RetailerInvKey}}\"\r\n  ]\r\n}"},"url":{"raw":"https://stage.commerceapi.io/api/v2/Invoices/Status?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v2","Invoices","Status"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"*","description":""},{"name":"cache-control","key":"cache-control","value":"private","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Wed, 17 Jan 2018 18:45:49 GMT","description":""},{"name":"server","key":"server","value":"Microsoft-IIS/8.5","description":""},{"name":"strict-transport-security","key":"strict-transport-security","value":"max-age=31536000","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-aspnet-version","key":"x-aspnet-version","value":"4.0.30319","description":""},{"name":"x-logicbroker-request-limit","key":"x-logicbroker-request-limit","value":"100","description":""},{"name":"x-powered-by","key":"x-powered-by","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Records\":[\"110863\"],\"TotalPages\":1,\"CurrentPage\":0,\"TotalRecords\":1}"}],"_postman_id":"6fd7aa40-f8fe-4490-9305-4db3967398a4"},{"name":"Post an Acknowledgement (used to test steps 2-4)","id":"244ac7fe-75bd-494b-9ba9-d8c7695d510a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{{AckDetail}}"},"url":"https://stage.commerceapi.io/api/v1/Acknowledgements?subscription-key={{subscription-key}}","description":"<p>This step will be used to quickly create the acknowledgement document for the order created. This acknowledgement will be accepting all line items.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Acknowledgements"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"3ae4f903-6e98-4684-84c3-3d414b320dba","name":"AcknowledgementResponse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{{AckDetail}}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Acknowledgements?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Acknowledgements"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Length","key":"Content-Length","value":"68","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Fri, 30 Sep 2016 18:27:15 GMT","description":""},{"name":"Location","key":"Location","value":"https://stage.commerceapi.io/api/v1/Acknowledgements/48949","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"201\",\"Message\":\"Created\",\"Body\":{\"LogicbrokerKey\":\"48949\"}}"}],"_postman_id":"244ac7fe-75bd-494b-9ba9-d8c7695d510a"},{"name":"Post a Shipment (used to test steps 5-7)","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","postman.setGlobalVariable(\"ShipmentLogicbrokerKey\", jsonData.Body.LogicbrokerKey);"]}}],"id":"8bdc82e7-b056-4dc9-9886-e5eec8fc8d60","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{{ShipDetail}}"},"url":"https://stage.commerceapi.io/api/v1/Shipments?subscription-key={{subscription-key}}","description":"<p>This step will be used to quickly create the shipment document for the order created. This shipment will be ship all line items.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Shipments"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"519a90b8-3774-4162-b690-dbceec9bada8","name":"Postsshipment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{{ShipDetail}}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Shipments?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Shipments"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Length","key":"Content-Length","value":"68","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Thu, 17 Nov 2016 19:57:41 GMT","description":""},{"name":"Location","key":"Location","value":"https://stage.commerceapi.io/api/v1/Shipments/54773","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"201\",\"Message\":\"Created\",\"Body\":{\"LogicbrokerKey\":\"54773\"}}"},{"id":"bb50c72c-76ab-4b39-8753-61b3751cfed8","name":"SampleShipmentResponse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{{ShipDetail}}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Shipments?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Shipments"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Length","key":"Content-Length","value":"68","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Fri, 30 Sep 2016 19:19:36 GMT","description":""},{"name":"Location","key":"Location","value":"https://stage.commerceapi.io/api/v1/Shipments/48951","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"201\",\"Message\":\"Created\",\"Body\":{\"LogicbrokerKey\":\"48951\"}}"}],"_postman_id":"8bdc82e7-b056-4dc9-9886-e5eec8fc8d60"},{"name":"Post a Invoice (used to test steps 7-10)","id":"768fd628-a361-4bb4-bd7d-56dcbd7b88ac","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{{InvoiceDetail}}"},"url":"https://stage.commerceapi.io/api/v1/Invoices?subscription-key={{subscription-key}}","description":"<p>This step will be used to quickly create the invoice document for the order created. This invoice will invoice all line items for that order.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Invoices"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"75394b44-7537-4b16-b9f4-088a9897bf37","name":"createinvoice","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{{InvoiceDetail}}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Invoices?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Invoices"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Length","key":"Content-Length","value":"84","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 03 Oct 2016 16:00:45 GMT","description":""},{"name":"Location","key":"Location","value":"https://stage.commerceapi.io/api/v1/Invoices/48978","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"Created\",\"Message\":\"New Invoice created\",\"Body\":{\"LogicbrokerKey\":\"48978\"}}"}],"_postman_id":"768fd628-a361-4bb4-bd7d-56dcbd7b88ac"}],"id":"d6675ba7-a870-49d7-88a2-f38b22ea5e46","description":"<h1 id=\"overview\">Overview</h1>\n<p>The retailer order lifecycle/flow is recommended for retailers who are sending order data to suppliers or warehouses.  Doing a one time integration following this process will enable you to connect your systems with the entire Logicbroker supplier network. Utilizing this flow, you can implement your own dropship program allowing suppliers and warehouses to receive orders and send updates in a variety of different formats including EDI, CSV, JSON, and XML </p>\n<p></p>\nThe diagram below is a brief overview of the recommended retailer flow.\n<p></p>\n<p>\n\n</p><p><img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Retailer-Flow-Redone.png\" /><br /></p><p></p>\n<h1 id=\"before-you-start---setup-your-trading-partners\">Before you Start - Setup your Trading Partners</h1>\n<p>You will need to setup your trading partners (suppliers/3PL Fulfillers) in the Logicbroker portal before you can begin testing. </p>\n<p>Partners are setup in the production portal, and once approved/paid for, their data is automatically propagated into our testing environment. This enables them to exchange both test, and live documents.  </p>\n<p>When sending documents through the API, Copmany ID’s are used to identify the sender as well as receiver. To find these values, go into the portal, and click “Suppliers” from the side navigation. Your CompanyID (SenderCompanyID) will be on documents sent to Logicbroker (Orders). ReceiverCompanyID will be the ID of the company you are sending the documents to.</p>\n<p><img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Retailer-Get-Supplier-CoID-1.png\" /><br />\n<br />\nOnce you have your trading partner setup you will need to update your global variables in postman to test with that trading partner. Once your supplier's account number is added as a variable, as shown below, you will then be able to post orders to that configured partner.</p>\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Reatiler-Set-PartnerID-in-Postman2.png\" />","_postman_id":"d6675ba7-a870-49d7-88a2-f38b22ea5e46"},{"name":"2. Retailer Inventory","item":[{"name":"Step 1:  Setup Items (Optional)","id":"b2595757-ac65-4a1b-b006-1ea13b6d1d9b","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":{"0":{"name":"StandardFeed.csv","lastModified":1464233513547,"lastModifiedDate":"2016-05-26T03:31:53.547Z","webkitRelativePath":"","size":2005,"type":"application/vnd.ms-excel"},"length":1},"value":null}]},"url":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId/Matching?subscription-key={{subscription-key}}","description":"<p>In this step the purpose would be to create the products in the logicbroker system. This will establish standard product data such as product identifiers, description, warehouse, pricing etc. For details on the standard feed format and samples, <a href=\"http://help.logicbroker.com/hc/en-us/articles/215261803-Inventory-CSV-Retailer-Standard\">see this article</a>. Remember when setting up the products, it is required that the linking between <strong>SupplierSKU</strong> and <strong>MerchantSKU</strong> is setup.\n<br />\n<br />\nOnce the attributes are established inventory updates can be received and will automatically match based on <strong>SupplierSKU</strong>. \n<br />\n<br />\nNote this step is <strong>optional</strong> as the products can be created during the updates. To do this you will need to login to the portal and navigate to <strong>Feed Management</strong>. Here you will have some options to manage how inventory feeds are processed. To automatically create products, you will need to mark the <strong>Auto match</strong> check box; upon marking it the setting will be saved.\n<br /></p>\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Reatiler-Inventory-Page.png\" />\n\n<p>For the other options see the descriptions below:\n<br />\n<br />\n<strong>Clear after:</strong> products quantities will be set to 0  in the next feed if the last modified date is later then what is configured.\n<br />\n<strong>Case-sensitive:</strong> will require that case matches on items setup in logicbroker when receiving inventory updates. \n<br />\n<strong>Latest feed only:</strong> will mark inventory quantity to 0 for all products that were not received in the most recent feed.\n<br />\n<br />\nFor more details around the <strong>Inventory Management</strong> page in the logicbroker portal <a href=\"http://help.logicbroker.com/hc/en-us/articles/210146893-Inventory-Management-Page\">please see this article</a>.\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Inventory/Inventory_UploadMatching\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This will determine which partner will be updated.<br /></td><td>integer</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>Use the sample document in <a href=\"http://help.logicbroker.com/hc/en-us/articles/215261803-Inventory-CSV-Retailer-Standard\">this article</a> to test. In the collection you will need to make sure that the global variable <strong>{{ReceiverCompanyID}}</strong> is set so the appropriate partner is updated.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Inventory",":partnerId","Matching"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"partnerId","type":"any","value":"{{partnerId}}","key":"partnerId"},{"type":"any","value":"{"},{"type":"any","value":"{","key":1},{"type":"any","value":"p","key":2},{"type":"any","value":"a","key":3},{"type":"any","value":"r","key":4},{"type":"any","value":"t","key":5},{"type":"any","value":"n","key":6},{"type":"any","value":"e","key":7},{"type":"any","value":"r","key":8},{"type":"any","value":"I","key":9},{"type":"any","value":"d","key":10},{"type":"any","value":"}","key":11},{"type":"any","value":"}","key":12}]}},"response":[],"_postman_id":"b2595757-ac65-4a1b-b006-1ea13b6d1d9b"},{"name":"Step 2: Download Inventory","id":"8294cd9c-d73d-4af7-9153-3e62454b6013","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId?modifiedAfter=2015/01/01&subscription-key={{subscription-key}}","description":"<p>When a supplier sends a new inventory feed through, logicbroker will match the items, based on <strong>SupplierSKU</strong> to what are setup and update any changed attributes; typcally these will be the <strong>Quantity</strong> and <strong>Cost</strong> fields. This in turn will update the <strong>modifiedAfter</strong> date which will allow you to download only products that changed.\n<br />\n<br />\nThe recommended process is to download one full feed on a longer term basis like one week and then process deltas or changes on a shorter term basis like every day. The longer term feed would include all products, making sure there is no <strong>modifiedAfter</strong> filter. For the shorter term delta updates, you would want to store the <strong>modifiedAfter</strong> date every time you run the call to make sure you are getting only the deltas from the time period you last downloaded the update.\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Inventory/Inventory_Download\">API reference</a>.</p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This will determine what partner to download the feed. this field is always <b>required</b>.</td><td>integer</td></tr><tr><td><b>modifiedAfter</b><br /></td><td>This will filter out only items that have changed after the date provided. This should be used for retrieving deltas. Leave this blank if you want to receive the full inventory feed. Deltas should be pulled more frequently (every day), while full feeds should be pulled less frequent (every week).</td><td>date-time</td></tr><tr><td><b>mapped</b></td><td>This will provide only items that were matched to the items setup in the last update sent by your supplier. For example, if you had one <b>SupplierSKU </b>setup with the ID <b>SKU-123</b> and your supplier sent updates for <b>SKU-123</b> and <b>SKU-124</b>, if this parameter is marked <b>true</b>, only the update to <b>SKU-123</b> will be downloaded. This also assumes you do not have <b>Auto-Match</b> setup on your partner. If this parameter isn't passed <b>true </b>will be defaulted.</td><td>boolean</td></tr><tr><td><b>transform</b></td><td>This will determine whether you are sending a custom CSV format. This will only work if you have a custom template setup on your account. If this parameter isn't passed, <b>true </b>will be defaulted.<br /></td><td>boolean<br /></td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In this test case the <strong>modifiedAfter</strong> date will defaule to <strong>2015/01/01</strong> and the <strong>partnerId</strong> will default to the global variable <strong>{{ReceiverCompanyID}}</strong>.\n<br />\n<br />\nTo test different cases you can update these parameters as you see fit.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Inventory",":partnerId"],"host":["stage","commerceapi","io"],"query":[{"key":"modifiedAfter","value":"2015/01/01"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"partnerId","type":"any","value":"{{ReceiverCompanyID}}","key":"partnerId"},{"type":"any","value":"{"},{"type":"any","value":"{","key":1},{"type":"any","value":"R","key":2},{"type":"any","value":"e","key":3},{"type":"any","value":"c","key":4},{"type":"any","value":"e","key":5},{"type":"any","value":"i","key":6},{"type":"any","value":"v","key":7},{"type":"any","value":"e","key":8},{"type":"any","value":"r","key":9},{"type":"any","value":"C","key":10},{"type":"any","value":"o","key":11},{"type":"any","value":"m","key":12},{"type":"any","value":"p","key":13},{"type":"any","value":"a","key":14},{"type":"any","value":"n","key":15},{"type":"any","value":"y","key":16},{"type":"any","value":"I","key":17},{"type":"any","value":"D","key":18},{"type":"any","value":"}","key":19},{"type":"any","value":"}","key":20}]}},"response":[{"id":"0542537f-a25e-494f-8b35-f8ba951832eb","name":"downloadinventory","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId?modifiedAfter=2015/01/01&mapped=true&transform=false&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Inventory",":partnerId"],"query":[{"key":"modifiedAfter","value":"2015/01/01"},{"key":"mapped","value":"true"},{"key":"transform","value":"false"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"partnerId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Fri, 18 Nov 2016 22:09:26 GMT","description":"The date and time that the message was sent"},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"https://stage.commerceapi.io/api/v1/Inventory?filetoken=c90aad4c-6a19-43a3-863a-900a966f7bf0\"}"}],"_postman_id":"8294cd9c-d73d-4af7-9153-3e62454b6013"},{"name":"Get a single item by SKU (Optional)","id":"0ba11e88-c067-49b7-abc7-3eb6d2dd0e26","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId/Item/{sku}?subscription-key={{subscription-key}}&sku=123","description":"<p>The purpose of this call is to get individual product information per sku. The information will include all standard logicbroker feed information. For a list of attributes please <a href=\"http://help.logicbroker.com/hc/en-us/articles/215261803-Inventory-CSV-Retailer-Standard\">see this article</a> for more information.\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Inventory/Inventory_GetItem\">API reference</a>.</p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This will determine what partner to download the feed. this field is always <b>required</b>.</td><td>integer</td></tr><tr><td><b>sku</b><br /></td><td>If you are a supplier this field will be the <b>SupplierSKU </b>and if you are retailer/merchant this value will lookup the <b>MerchantSKU</b>.</td><td>string</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the test case <strong>partnerId</strong> will default to the global variable <strong>{{ReceiverCompanyID}}</strong>. </p>\n<p>You will need to supply a <strong>sku</strong> to get a successful response.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Inventory",":partnerId","Item","{sku}"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"},{"key":"sku","value":"123"}],"variable":[{"id":"partnerId","type":"any","value":"{{ReceiverCompanyID}}","key":"partnerId"},{"type":"any","value":"{"},{"type":"any","value":"{","key":1},{"type":"any","value":"R","key":2},{"type":"any","value":"e","key":3},{"type":"any","value":"c","key":4},{"type":"any","value":"e","key":5},{"type":"any","value":"i","key":6},{"type":"any","value":"v","key":7},{"type":"any","value":"e","key":8},{"type":"any","value":"r","key":9},{"type":"any","value":"C","key":10},{"type":"any","value":"o","key":11},{"type":"any","value":"m","key":12},{"type":"any","value":"p","key":13},{"type":"any","value":"a","key":14},{"type":"any","value":"n","key":15},{"type":"any","value":"y","key":16},{"type":"any","value":"I","key":17},{"type":"any","value":"D","key":18},{"type":"any","value":"}","key":19},{"type":"any","value":"}","key":20}]}},"response":[{"id":"8a3b7d91-e18e-4748-94dd-63bb8623dc5d","name":"No matching","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId/Item/{sku}?subscription-key={{subscription-key}}&sku=123","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Inventory",":partnerId","Item","{sku}"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"},{"key":"sku","value":"123"}],"variable":[{"key":"partnerId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Length","key":"Content-Length","value":"59","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 21 Nov 2016 15:52:59 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Message\":\"No matching inventory item found for SKU 123.\"}"}],"_postman_id":"0ba11e88-c067-49b7-abc7-3eb6d2dd0e26"},{"name":"Get SKU availability from all suppliers (optional)","id":"3355e56b-17ee-4b80-bd8d-34878dc4e6c8","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v1/Inventory/Availability/{SKU}?subscription-key={{subscription-key}}","description":"<p>The purpose of this call is to aggregate all the available suppliers for a given SKU. To utilize this endpoint you will need to make sure your products and feeds getting received from supplier contain the <strong>MerchantSKU</strong> and the value is shared across all suppliers. For example if you are have a product with a SKU of \"V-123\", you will need to make sure all inventory/cost updates that your supplier sends for that product contain the same <strong>MerchantSKU</strong>. When you make a GET call for that sku it will aggregate all the suppliers with their inventory and cost data for that sku. </p>\n<h3 id=\"dropship-and-sourcing-ideas\">Dropship and Sourcing Ideas</h3>\n<p>Some ideas to implement order sourcing logic using this endpoint include sourcing for the cheapest, closest, or inventory available. Below are some examples on how you can use the endpoint to aggregate your data and use custom logic in your own app to pick your supplier to create a purchase order for. </p>\n<h4 id=\"idea-sourcing-based-on-cost\">**Idea sourcing based on cost</h4>\n<p>1.Call the endpoint for a SKU to get all available suppliers. <br />\n2.Filter the response based on suppliers who have a <strong>Quantity</strong> &gt; 0 <br />\n3.Filter the response with the lowest <strong>Cost</strong> <br />\n4.Post order to our <strong>/Orders</strong> endpoint to create a Purchase Order for the <strong>SupplierId</strong> from the feed (ReceiverCompanyId on the order). \n<br />\n<br /></p>\n<h4 id=\"idea-based-on-location\">**Idea based on location</h4>\n<p>You can also utilize the <strong>Warehouse</strong> values to implement logic based on location. By having the supplier send warehouse locations with their feeds (City, State, Zip values); you can connect with a 3rd party maps app, like Google Maps, to get distance values for your warehouse location (Ship From) and the Ship To address values on your order; and then filter based on shortest distance. Once you have the closest supplier, you can create an order using the <strong>/Orders</strong> endpoint.<br /><br />\n<em>Logicbroker also has built in automated sourcing logic based on cost, individual SKU, and grouping orders per least amount of suppliers. This is available as a configuration and requires no development effort.</em>\n<br />\n<br />\nContact <strong><a href=\"mailto:sales@logicbroker.com\">sales@logicbroker.com</a></strong> or <strong><a href=\"mailto:support@logicbroker.com\">support@logicbroker.com</a></strong> to learn more on how to coordinate your own custom sourcing logic.\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Inventory/Inventory_GetAvailability\">API reference</a>.</p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>sku</b><br /></td><td>This is the <b>MerchantSKU </b>that will need to match across all suppliers. </td><td>string</td></tr></tbody></table><p><b><br /></b></p>","urlObject":{"protocol":"https","path":["api","v1","Inventory","Availability","{SKU}"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"dba79487-5701-41ca-9140-6664f6acd1aa","name":"Get SKU availability from all suppliers","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/Inventory/Availability/{SKU}?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Inventory","Availability","{SKU}"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"private","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Wed, 17 Jan 2018 19:01:07 GMT","description":""},{"name":"server","key":"server","value":"Microsoft-IIS/8.5","description":""},{"name":"strict-transport-security","key":"strict-transport-security","value":"max-age=31536000","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-aspnet-version","key":"x-aspnet-version","value":"4.0.30319","description":""},{"name":"x-logicbroker-request-limit","key":"x-logicbroker-request-limit","value":"99","description":""},{"name":"x-powered-by","key":"x-powered-by","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Records\":[{\"SupplierSKU\":\"000052873-0\",\"SupplierId\":100988,\"MerchantId\":101085,\"MerchantSKU\":\"000052873-0\",\"Quantity\":100,\"Cost\":0.0,\"MSRP\":0.0,\"LastUpdate\":\"2017-12-22T21:33:57.9287958\"}],\"TotalPages\":1,\"CurrentPage\":0,\"TotalRecords\":1}"}],"_postman_id":"3355e56b-17ee-4b80-bd8d-34878dc4e6c8"}],"id":"b5c15e17-9ded-49c4-9124-b31b71469fe0","description":"<p>This section will provide details on how to setup and download new inventory updates from your partner. All setup and downloading can be done in the portal as well and for more on how to update inventory through the portal <a href=\"http://help.logicbroker.com/hc/en-us/articles/210146893-Inventory-Management-Page\">please see this article</a>.</p>\n<p>All setup and downloads will be provided by submitting and receiving the data in the standard CSV format. If you would like a custom CSV format, please contact <a href=\"mailto:support@logicbroker.com\">support@logicbroker.com</a></p>\n","_postman_id":"b5c15e17-9ded-49c4-9124-b31b71469fe0"},{"name":"3. Supplier Order Lifecycle","item":[{"name":"Step 1: Search and Get Order Details","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["postman.clearEnvironmentVariable(\"LogicbrokerKey\");","postman.clearEnvironmentVariable(\"AckDetail\");","postman.clearEnvironmentVariable(\"ShipDetail\");","postman.clearEnvironmentVariable(\"InvoiceDetail\");"]}},{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);\r","\r","postman.setEnvironmentVariable(\"LogicbrokerKey\", jsonData.Records[0].Identifier.LogicbrokerKey);\r","\r","tests[\"Body matches string\"] = responseBody.has(\"SalesOrder\");\r","\r","//Acknoweledgement\r","var jsonData = JSON.parse(responseBody);\r","jsonData.AckLines=jsonData.Records[0].OrderLines;\r","jsonData.PartnerPO=jsonData.Records[0].PartnerPO;\r","jsonData.VendorNumber=jsonData.Records[0].VendorNumber;\r","jsonData.ScheduledShipDate=jsonData.Records[0].ScheduledShipDate;\r","jsonData.OrderNumber=jsonData.Records[0].OrderNumber;\r","jsonData.Identifier=jsonData.Records[0].Identifier;\r","delete jsonData.Body;\r","\r","postman.setEnvironmentVariable(\"AckDetail\", JSON.stringify(jsonData, null, '\\t'));\r","\r","//Shipment\r","var shipjsonData = JSON.parse(responseBody);\r","shipjsonData.ShipmentLines=shipjsonData.Records[0].OrderLines;\r","delete shipjsonData.Records[0].OrderLines;\r","shipjsonData.PartnerPO=shipjsonData.Records[0].PartnerPO;\r","shipjsonData.VendorNumber=shipjsonData.Records[0].VendorNumber;\r","shipjsonData.ExpectedDeliveryDate=shipjsonData.Records[0].ScheduledShipDate;\r","shipjsonData.OrderNumber=shipjsonData.Records[0].OrderNumber;\r","shipjsonData.Identifier=shipjsonData.Records[0].Identifier;\r","shipjsonData.ShipToAddress=shipjsonData.Records[0].ShipToAddress;\r","shipjsonData.BillToAddress=shipjsonData.Records[0].BillToAddress;\r","shipjsonData.OrderedByAddress=shipjsonData.Records[0].OrderedByAddress;\r","shipjsonData.ShipFromAddress=shipjsonData.Records[0].ShipFromAddress;\r","shipjsonData.BillofLading = \"BOL\"+shipjsonData.Records[0].PartnerPO;\r","shipjsonData.PRONumber = \"PRO\"+shipjsonData.Records[0].PartnerPO;\r","\r","//Shipment Lines\r","var numItems = shipjsonData.ShipmentLines.length;\r","for( i = 0; i < numItems; i++){\r","    \r","    var today = new Date();\r","    var dd = today.getDate();\r","    var mm = today.getMonth()+1; //January is 0!\r","    var yyyy = today.getFullYear();\r","            \r","        if(dd<10) {\r","            dd='0'+dd\r","        } \r","            \r","        if(mm<10) {\r","            mm='0'+mm\r","        } \r","            \r","        today = yyyy+'-'+mm+'-'+dd;\r","    shipjsonData.ShipmentLines[i].ShipmentInfos[0].DateShipped = today;\r","    shipjsonData.ShipmentLines[i].ShipmentInfos[0].Qty = shipjsonData.ShipmentLines[i].Quantity;\r","    shipjsonData.ShipmentLines[i].ShipmentInfos[0].TrackingNumber = \"1Z\"+i+i+i+i+i+i+i+i+i+i+i+i+i+i+i+i;\r","    shipjsonData.ShipmentLines[i].ShipmentInfos[0].CarrierCode = \"FDEG\";\r","    shipjsonData.ShipmentLines[i].ShipmentInfos[0].ClassCode = \"FDEG-CG\";\r","    shipjsonData.ShipmentLines[i].ShipmentInfos[0].ContainerType = \"box\";\r","    shipjsonData.ShipmentLines[i].ShipmentInfos[0].Weight = \"1\"+i;\r","    shipjsonData.ShipmentLines[i].ShipmentInfos[0].WeightUnit = \"LB\";\r","    shipjsonData.ShipmentLines[i].ShipmentInfos[0].Length = (i+5).toString();\r","    shipjsonData.ShipmentLines[i].ShipmentInfos[0].Width = (i+7).toString();\r","    shipjsonData.ShipmentLines[i].ShipmentInfos[0].Height = (i+9).toString();\r","    shipjsonData.ShipmentLines[i].ShipmentInfos[0].DimensionUnit = \"IN\";\r","}\r","\r","delete shipjsonData.Records;\r","delete shipjsonData.TotalPages;\r","delete shipjsonData.CurrentPage;\r","delete shipjsonData.TotalRecords;\r","\r","postman.setEnvironmentVariable(\"ShipDetail\", JSON.stringify(shipjsonData, null, '\\t'));\r","\r","//Invoice\r","var invoicejsonData = JSON.parse(responseBody);\r","invoicejsonData.InvoiceLines=invoicejsonData.Records[0].OrderLines;\r","invoicejsonData.PartnerPO=invoicejsonData.Records[0].PartnerPO;\r","invoicejsonData.VendorNumber=invoicejsonData.Records[0].VendorNumber;\r","invoicejsonData.OrderNumber=invoicejsonData.Records[0].OrderNumber;\r","invoicejsonData.Identifier=invoicejsonData.Records[0].Identifier;\r","var today = new Date();\r","var dd = today.getDate();\r","var mm = today.getMonth()+1; //January is 0!\r","var yyyy = today.getFullYear();\r","            \r","    if(dd<10) {\r","        dd='0'+dd\r","    } \r","            \r","    if(mm<10) {\r","        mm='0'+mm\r","    } \r","            \r","    today = yyyy+'-'+mm+'-'+dd;\r","invoicejsonData.InvoiceDate = today;\r","invoicejsonData.InvoiceNumber = \"INV\"+invoicejsonData.Records[0].PartnerPO;\r","invoicejsonData.ShipToAddress=invoicejsonData.Records[0].ShipToAddress;\r","invoicejsonData.BillToAddress=invoicejsonData.Records[0].BillToAddress;\r","invoicejsonData.OrderedByAddress=invoicejsonData.Records[0].OrderedByAddress;\r","invoicejsonData.ShipFromAddress=invoicejsonData.Records[0].ShipFromAddress;\r","delete invoicejsonData.Body\r","\r","postman.setEnvironmentVariable(\"InvoiceDetail\", JSON.stringify(invoicejsonData, null, '\\t'));\r","\r",""]}}],"id":"408a8f57-1bdd-4769-8da5-83ac1cf68783","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v2/Orders/Ready?subscription-key={{subscription-key}}","description":"<p>Here you would want to gather a list of orders and get their details.</p>\n<p>Getting a list of orders should consist of specifying the appropriate status of orders that are ready to be processed. In the test the is setup to pick up all orders that are ready. This can be orders in a \"Submitted\" (100) status or for some retailers another status indicating it is ready to be received.</p>\n<p>Once you have the list of orders, it is important to save the <strong>LogicbrokerKey</strong> as this will be used in the next step to update the order status.\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Order/Order_SearchSalesOrders\">API reference</a>. </p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>Filters.senderCompanyId</b></td><td>Used to filter based on retailer sending the order. Use the Partner endpoint to get valid company IDs.</td><td>string</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection, the <strong>LogicbrokerKey</strong> will be stored as a global variable and used in the next call to get the order details. When running the test the first <strong>LogicbrokerKey</strong> will be saved. The <strong>LogicbrokerKey</strong> should always be stored on your side and will be used as the unique identifier for each document. </p>\n<p></p>\nUsing **Filters.senderCompanyId** will depend on how you want to process your orders; if not filtered here you can get the **senderCompanyId** on the order detail as well. In the test this parameter is left blank and will pull all partner's orders. It is recommended to always pull all partner's orders to limit the calls made to our endpoint.\n\n<p>For more details on the response and fields/properties purposes see this <a href=\"http://help.logicbroker.com/hc/en-us/articles/213276663-Order\">article in the help center</a>. Following the standard in the article will help you anticipate what is to be expected when receiving new orders and how to handle those fields. </p>\n","urlObject":{"protocol":"https","path":["api","v2","Orders","Ready"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"c49bb419-8419-4968-910f-e19a11c28dad","name":"OrderResponse","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v2/Orders?Filters.status=100&Filters.senderCompanyId=&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v2","Orders"],"query":[{"key":"Filters.status","value":"100"},{"key":"Filters.senderCompanyId","value":""},{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 20 Mar 2017 19:37:16 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Records\":[{\"ShipFromAddress\":{\"CompanyName\":\"XYZD\",\"AddressCode\":\"XYZD\",\"ContactType\":0,\"ExtendedAttributes\":[{\"Name\":\"N103 - Ship From Address Code Qualifier\",\"Value\":\"92\"}]},\"RemitToAddress\":{\"ContactType\":0},\"MarkForAddress\":{\"ContactType\":0},\"TypeCode\":\"SS\",\"SalesRequirement\":0,\"OrderLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"00000\",\"PartnerSKU\":\"00000\"},\"Price\":24.44,\"RetailPrice\":0.0,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Example Product, Service for 4\",\"Discounts\":[],\"ShipmentInfos\":[],\"Taxes\":[],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"PO1 - TP\",\"Value\":\"Kitchen\"},{\"Name\":\"PO1 - BL\",\"Value\":\"1\"},{\"Name\":\"PO1 - ZZ\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"Item Level Message\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"PartnerLineID\",\"Value\":\"1\"},{\"Name\":\"QuantityOrdered\",\"Value\":\"1\"},{\"Name\":\"QuantityOrderedUOM\",\"Value\":\"EA\"},{\"Name\":\"OrderItemPrice\",\"Value\":\"2444\"},{\"Name\":\"OrderDescription\",\"Value\":\"Example Product, Service for 4\"}]}],\"Identifier\":{\"SourceKey\":\"Test12345\",\"LogicbrokerKey\":\"50722\",\"LinkKey\":\"1611038120\"},\"OrderNumber\":\"Test12345\",\"PartnerPO\":\"Test12345\",\"OrderDate\":\"2016-03-03T00:00:00\",\"DocumentDate\":\"2016-11-03T20:24:01.803\",\"SenderCompanyId\":101200,\"ReceiverCompanyId\":100988,\"Taxes\":[{\"TaxAmount\":0.0}],\"PaymentTerm\":{\"PayInNumberOfDays\":0,\"DiscountInNumberOfDays\":0,\"AvailableDiscount\":0.0,\"DueDate\":\"0001-01-01T00:00:00\",\"DiscountDueDate\":\"0001-01-01T00:00:00\",\"EffectiveDate\":\"0001-01-01T00:00:00\"},\"ShipmentInfos\":[{\"CarrierCode\":\"UPS_GR_COM\"}],\"ShipToAddress\":{\"CompanyName\":\"Harry Potter\",\"Address1\":\"0 Hogwarts lane\",\"City\":\"suwanee\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"12345\",\"ContactType\":0,\"ExtendedAttributes\":[{\"Name\":\"LocationIdentifier\",\"Value\":\"United States\"}]},\"BillToAddress\":{\"CompanyName\":\"Amazon.com.kydc,Inc.\",\"Title\":\"\",\"Province\":\"\",\"AddressCode\":\"KYDC\",\"StateCode\":\"\",\"ContactID\":\"\",\"ContactType\":0,\"TaxNumber\":\"\",\"Note\":\"\",\"ExtendedAttributes\":[{\"Name\":\"N103 - Bill To Address Code Qualifier\",\"Value\":\"92\"}]},\"OrderedByAddress\":{\"CompanyName\":\"Harry Potter\",\"Address1\":\"500 Hogwarts lane\",\"City\":\"suwanee\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"12345-0000\",\"Phone\":\"000-000-8216\",\"ContactType\":0,\"ExtendedAttributes\":[{\"Name\":\"PER - Order By Address Contact Qualifier\",\"Value\":\"ZZ\"}]},\"ExtendedAttributes\":[{\"Name\":\"REF - Order Number\",\"Value\":\"000-0001000-0000000\"},{\"Name\":\"REFID - ST\",\"Value\":\"1\"},{\"Name\":\"SourceSystem\",\"Value\":\"EDI\",\"Section\":\"Documents\"},{\"Name\":\"LinkKey\",\"Value\":\"1611038120\",\"Section\":\"Documents\"},{\"Name\":\"ShipToCompany\",\"Value\":\"Harry Potter\"},{\"Name\":\"ShipToAddress1\",\"Value\":\"0 Hogwarts lane\"},{\"Name\":\"ShipToCity\",\"Value\":\"suwanee\"},{\"Name\":\"ShipToState\",\"Value\":\"CA\"},{\"Name\":\"ShipToZip\",\"Value\":\"12345\"},{\"Name\":\"ShipToCountry\",\"Value\":\"US\"},{\"Name\":\"BillToCompany\",\"Value\":\"Amazon.com.kydc,Inc.\"},{\"Name\":\"BillToAddressCode\",\"Value\":\"KYDC\"},{\"Name\":\"ShipFromCompany\",\"Value\":\"XYZD\"},{\"Name\":\"ShipFromAddressCode\",\"Value\":\"XYZD\"},{\"Name\":\"StoreNumber\",\"Value\":\"1\"},{\"Name\":\"LogoURL1\",\"Value\":\"https://logicbrokeradx.blob.core.windows.net/logos/amzn_youraccount.jpg\"},{\"Name\":\"PartnerSku0\",\"Value\":\"00000\"},{\"Name\":\"ItemQuantity0\",\"Value\":\"1\"},{\"Name\":\"ItemPrice0\",\"Value\":\"0\"},{\"Name\":\"Sellerid0\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"ItemMessage0\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"ItemDescription0\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"OrderedByCompany\",\"Value\":\"Harry Potter\"},{\"Name\":\"OrderedByCity\",\"Value\":\"suwanee\"},{\"Name\":\"OrderedByState\",\"Value\":\"CA\"},{\"Name\":\"OrderedByZip\",\"Value\":\"12345-0000\"},{\"Name\":\"OrderedByCountry\",\"Value\":\"US\"},{\"Name\":\"OrderedByPhone\",\"Value\":\"000-000-8216\"}],\"TotalAmount\":24.44,\"Currency\":\"USD\",\"StatusCode\":100,\"HandlingAmount\":0.0,\"Note\":\"This shipment completes your order.\\nFor detailed information about your orders, please visit Your Account. You can also print invoices, change your e-mail address and payment settings, alter your communication preferences, and much more-24 hours a day-at http://www.amazon.com/your-account.\\nVisit http://www.amazon.com/returns to return any item-including gifts-in unopened or original condition within 30 days for a full refund(other restrictions apply). Please have your order ID ready. Thanks for shopping at Amazon.com, and please come again!\"},{\"ShipFromAddress\":{\"CompanyName\":\"XYZD\",\"AddressCode\":\"XYZD\",\"ContactType\":0,\"ExtendedAttributes\":[{\"Name\":\"N103 - Ship From Address Code Qualifier\",\"Value\":\"92\"}]},\"RemitToAddress\":{\"ContactType\":0},\"MarkForAddress\":{\"ContactType\":0},\"TypeCode\":\"SS\",\"SalesRequirement\":0,\"OrderLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"00000\",\"PartnerSKU\":\"00000\"},\"Price\":24.44,\"RetailPrice\":31.99,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Example Product, Service for 4\",\"Discounts\":[],\"ShipmentInfos\":[],\"Taxes\":[],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"PO1 - TP\",\"Value\":\"Kitchen\"},{\"Name\":\"PO1 - BL\",\"Value\":\"1\"},{\"Name\":\"PO1 - ZZ\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"Item Level Message\"},{\"Name\":\"PartnerLineID\",\"Value\":\"1\"},{\"Name\":\"QuantityOrdered\",\"Value\":\"1\"},{\"Name\":\"QuantityOrderedUOM\",\"Value\":\"EA\"},{\"Name\":\"OrderItemPrice\",\"Value\":\"2444\"},{\"Name\":\"OrderDescription\",\"Value\":\"Example Product, Service for 4\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"00000\",\"PartnerSKU\":\"00000\"},\"Price\":24.44,\"RetailPrice\":31.99,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Example Product, Service for 4\",\"Discounts\":[],\"ShipmentInfos\":[],\"Taxes\":[],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"PO1 - TP\",\"Value\":\"Kitchen\"},{\"Name\":\"PO1 - BL\",\"Value\":\"1\"},{\"Name\":\"PO1 - ZZ\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"Item Level Message\"},{\"Name\":\"PartnerLineID\",\"Value\":\"1\"},{\"Name\":\"QuantityOrdered\",\"Value\":\"1\"},{\"Name\":\"QuantityOrderedUOM\",\"Value\":\"EA\"},{\"Name\":\"OrderItemPrice\",\"Value\":\"2444\"},{\"Name\":\"OrderDescription\",\"Value\":\"Example Product, Service for 4\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"1111\",\"PartnerSKU\":\"1111\"},\"Price\":24.44,\"RetailPrice\":31.99,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Example Product, Service for 4\",\"Discounts\":[],\"ShipmentInfos\":[],\"Taxes\":[],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"PO1 - TP\",\"Value\":\"Kitchen\"},{\"Name\":\"PO1 - BL\",\"Value\":\"1\"},{\"Name\":\"PO1 - ZZ\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"Item Level Message\"},{\"Name\":\"PartnerLineID\",\"Value\":\"1\"},{\"Name\":\"QuantityOrdered\",\"Value\":\"1\"},{\"Name\":\"QuantityOrderedUOM\",\"Value\":\"EA\"},{\"Name\":\"OrderItemPrice\",\"Value\":\"2444\"},{\"Name\":\"OrderDescription\",\"Value\":\"Example Product, Service for 4\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"2222\",\"PartnerSKU\":\"2222\"},\"Price\":24.44,\"RetailPrice\":31.99,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Example Product, Service for 4\",\"Discounts\":[],\"ShipmentInfos\":[],\"Taxes\":[],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"PO1 - TP\",\"Value\":\"Kitchen\"},{\"Name\":\"PO1 - BL\",\"Value\":\"1\"},{\"Name\":\"PO1 - ZZ\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"Item Level Message\"},{\"Name\":\"PartnerLineID\",\"Value\":\"1\"},{\"Name\":\"QuantityOrdered\",\"Value\":\"1\"},{\"Name\":\"QuantityOrderedUOM\",\"Value\":\"EA\"},{\"Name\":\"OrderItemPrice\",\"Value\":\"2444\"},{\"Name\":\"OrderDescription\",\"Value\":\"Example Product, Service for 4\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"33733\",\"PartnerSKU\":\"33733\"},\"Price\":24.44,\"RetailPrice\":31.99,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Example Product, Service for 4\",\"Discounts\":[],\"ShipmentInfos\":[],\"Taxes\":[],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"PO1 - TP\",\"Value\":\"Kitchen\"},{\"Name\":\"PO1 - BL\",\"Value\":\"1\"},{\"Name\":\"PO1 - ZZ\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"Item Level Message\"},{\"Name\":\"PartnerLineID\",\"Value\":\"1\"},{\"Name\":\"QuantityOrdered\",\"Value\":\"1\"},{\"Name\":\"QuantityOrderedUOM\",\"Value\":\"EA\"},{\"Name\":\"OrderItemPrice\",\"Value\":\"2444\"},{\"Name\":\"OrderDescription\",\"Value\":\"Example Product, Service for 4\"}]}],\"Identifier\":{\"SourceKey\":\"Test12345\",\"LogicbrokerKey\":\"50733\",\"LinkKey\":\"1611038120\"},\"OrderNumber\":\"Test12345\",\"PartnerPO\":\"Test12345\",\"OrderDate\":\"2016-03-03T00:00:00\",\"DocumentDate\":\"2016-11-03T21:07:13.523\",\"SenderCompanyId\":101200,\"ReceiverCompanyId\":100988,\"Taxes\":[{\"TaxAmount\":0.0}],\"PaymentTerm\":{\"PayInNumberOfDays\":0,\"DiscountInNumberOfDays\":0,\"AvailableDiscount\":0.0,\"DueDate\":\"0001-01-01T00:00:00\",\"DiscountDueDate\":\"0001-01-01T00:00:00\",\"EffectiveDate\":\"0001-01-01T00:00:00\"},\"ShipmentInfos\":[{\"CarrierCode\":\"UPS_GR_COM\"}],\"ShipToAddress\":{\"CompanyName\":\"Harry Potter\",\"Address1\":\"0 Hogwarts lane\",\"City\":\"suwanee\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"12345\",\"ContactType\":0,\"ExtendedAttributes\":[{\"Name\":\"LocationIdentifier\",\"Value\":\"United States\"}]},\"BillToAddress\":{\"CompanyName\":\"Amazon.com.kydc,Inc.\",\"Title\":\"\",\"Province\":\"\",\"AddressCode\":\"KYDC\",\"StateCode\":\"\",\"ContactID\":\"\",\"ContactType\":0,\"TaxNumber\":\"\",\"Note\":\"\",\"ExtendedAttributes\":[{\"Name\":\"N103 - Bill To Address Code Qualifier\",\"Value\":\"92\"}]},\"OrderedByAddress\":{\"CompanyName\":\"Harry Potter\",\"Address1\":\"500 Hogwarts lane\",\"City\":\"suwanee\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"12345-0000\",\"Phone\":\"000-000-8216\",\"ContactType\":0,\"ExtendedAttributes\":[{\"Name\":\"PER - Order By Address Contact Qualifier\",\"Value\":\"ZZ\"}]},\"ExtendedAttributes\":[{\"Name\":\"REF - Order Number\",\"Value\":\"000-0001000-0000000\"},{\"Name\":\"REFID - ST\",\"Value\":\"1\"},{\"Name\":\"SourceSystem\",\"Value\":\"EDI\",\"Section\":\"Documents\"},{\"Name\":\"LinkKey\",\"Value\":\"1611038120\",\"Section\":\"Documents\"},{\"Name\":\"ShipToCompany\",\"Value\":\"Harry Potter\"},{\"Name\":\"ShipToAddress1\",\"Value\":\"0 Hogwarts lane\"},{\"Name\":\"ShipToCity\",\"Value\":\"suwanee\"},{\"Name\":\"ShipToState\",\"Value\":\"CA\"},{\"Name\":\"ShipToZip\",\"Value\":\"12345\"},{\"Name\":\"ShipToCountry\",\"Value\":\"US\"},{\"Name\":\"BillToCompany\",\"Value\":\"Amazon.com.kydc,Inc.\"},{\"Name\":\"BillToAddressCode\",\"Value\":\"KYDC\"},{\"Name\":\"ShipFromCompany\",\"Value\":\"XYZD\"},{\"Name\":\"ShipFromAddressCode\",\"Value\":\"XYZD\"},{\"Name\":\"StoreNumber\",\"Value\":\"1\"},{\"Name\":\"LogoURL1\",\"Value\":\"https://logicbrokeradx.blob.core.windows.net/logos/amzn_youraccount.jpg\"},{\"Name\":\"PartnerSku0\",\"Value\":\"00000\"},{\"Name\":\"ItemQuantity0\",\"Value\":\"1\"},{\"Name\":\"ItemPrice0\",\"Value\":\"31.99\"},{\"Name\":\"Sellerid0\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"ItemMessage0\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"ItemDescription0\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"OrderedByCompany\",\"Value\":\"Harry Potter\"},{\"Name\":\"OrderedByCity\",\"Value\":\"suwanee\"},{\"Name\":\"OrderedByState\",\"Value\":\"CA\"},{\"Name\":\"OrderedByZip\",\"Value\":\"12345-0000\"},{\"Name\":\"OrderedByCountry\",\"Value\":\"US\"},{\"Name\":\"OrderedByPhone\",\"Value\":\"000-000-8216\"},{\"Name\":\"PartnerSku1\",\"Value\":\"00000\"},{\"Name\":\"ItemQuantity1\",\"Value\":\"1\"},{\"Name\":\"ItemPrice1\",\"Value\":\"31.99\"},{\"Name\":\"Sellerid1\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"ItemMessage1\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"ItemDescription1\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"PartnerSku2\",\"Value\":\"1111\"},{\"Name\":\"ItemQuantity2\",\"Value\":\"1\"},{\"Name\":\"ItemPrice2\",\"Value\":\"31.99\"},{\"Name\":\"Sellerid2\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"ItemMessage2\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"ItemDescription2\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"PartnerSku3\",\"Value\":\"2222\"},{\"Name\":\"ItemQuantity3\",\"Value\":\"1\"},{\"Name\":\"ItemPrice3\",\"Value\":\"31.99\"},{\"Name\":\"Sellerid3\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"ItemMessage3\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"ItemDescription3\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"PartnerSku4\",\"Value\":\"33733\"},{\"Name\":\"ItemQuantity4\",\"Value\":\"1\"},{\"Name\":\"ItemPrice4\",\"Value\":\"31.99\"},{\"Name\":\"Sellerid4\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"ItemMessage4\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"ItemDescription4\",\"Value\":\"Example Product, Service for 4\"}],\"TotalAmount\":122.20,\"Currency\":\"USD\",\"StatusCode\":100,\"HandlingAmount\":0.0,\"Note\":\"This shipment completes your order.\\nFor detailed information about your orders, please visit Your Account. You can also print invoices, change your e-mail address and payment settings, alter your communication preferences, and much more-24 hours a day-at http://www.amazon.com/your-account.\\nVisit http://www.amazon.com/returns to return any item-including gifts-in unopened or original condition within 30 days for a full refund(other restrictions apply). Please have your order ID ready. Thanks for shopping at Amazon.com, and please come again!\"},{\"ShipFromAddress\":{\"CompanyName\":\"XYZD\",\"AddressCode\":\"XYZD\",\"ContactType\":0,\"ExtendedAttributes\":[{\"Name\":\"N103 - Ship From Address Code Qualifier\",\"Value\":\"92\"}]},\"RemitToAddress\":{\"ContactType\":0},\"MarkForAddress\":{\"ContactType\":0},\"TypeCode\":\"SS\",\"SalesRequirement\":0,\"OrderLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"00000\",\"PartnerSKU\":\"00000\"},\"Price\":24.44,\"RetailPrice\":31.99,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Example Product, Service for 4\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"PO1 - TP\",\"Value\":\"Kitchen\"},{\"Name\":\"PO1 - BL\",\"Value\":\"1\"},{\"Name\":\"PO1 - ZZ\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"Item Level Message\"},{\"Name\":\"PartnerLineID\",\"Value\":\"1\"},{\"Name\":\"QuantityOrdered\",\"Value\":\"1\"},{\"Name\":\"QuantityOrderedUOM\",\"Value\":\"EA\"},{\"Name\":\"OrderItemPrice\",\"Value\":\"2444\"},{\"Name\":\"OrderDescription\",\"Value\":\"Example Product, Service for 4\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"00000\",\"PartnerSKU\":\"00000\"},\"Price\":24.44,\"RetailPrice\":31.99,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Example Product, Service for 4\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"PO1 - TP\",\"Value\":\"Kitchen\"},{\"Name\":\"PO1 - BL\",\"Value\":\"1\"},{\"Name\":\"PO1 - ZZ\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"Item Level Message\"},{\"Name\":\"PartnerLineID\",\"Value\":\"1\"},{\"Name\":\"QuantityOrdered\",\"Value\":\"1\"},{\"Name\":\"QuantityOrderedUOM\",\"Value\":\"EA\"},{\"Name\":\"OrderItemPrice\",\"Value\":\"2444\"},{\"Name\":\"OrderDescription\",\"Value\":\"Example Product, Service for 4\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"1111\",\"PartnerSKU\":\"1111\"},\"Price\":24.44,\"RetailPrice\":31.99,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Example Product, Service for 4\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"PO1 - TP\",\"Value\":\"Kitchen\"},{\"Name\":\"PO1 - BL\",\"Value\":\"1\"},{\"Name\":\"PO1 - ZZ\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"Item Level Message\"},{\"Name\":\"PartnerLineID\",\"Value\":\"1\"},{\"Name\":\"QuantityOrdered\",\"Value\":\"1\"},{\"Name\":\"QuantityOrderedUOM\",\"Value\":\"EA\"},{\"Name\":\"OrderItemPrice\",\"Value\":\"2444\"},{\"Name\":\"OrderDescription\",\"Value\":\"Example Product, Service for 4\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"2222\",\"PartnerSKU\":\"2222\"},\"Price\":24.44,\"RetailPrice\":31.99,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Example Product, Service for 4\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"PO1 - TP\",\"Value\":\"Kitchen\"},{\"Name\":\"PO1 - BL\",\"Value\":\"1\"},{\"Name\":\"PO1 - ZZ\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"Item Level Message\"},{\"Name\":\"PartnerLineID\",\"Value\":\"1\"},{\"Name\":\"QuantityOrdered\",\"Value\":\"1\"},{\"Name\":\"QuantityOrderedUOM\",\"Value\":\"EA\"},{\"Name\":\"OrderItemPrice\",\"Value\":\"2444\"},{\"Name\":\"OrderDescription\",\"Value\":\"Example Product, Service for 4\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"33733\",\"PartnerSKU\":\"33733\"},\"Price\":24.44,\"RetailPrice\":31.99,\"Cost\":0.0,\"MSRP\":0.0,\"Description\":\"Example Product, Service for 4\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"PO1 - TP\",\"Value\":\"Kitchen\"},{\"Name\":\"PO1 - BL\",\"Value\":\"1\"},{\"Name\":\"PO1 - ZZ\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"Item Level Message\"},{\"Name\":\"PartnerLineID\",\"Value\":\"1\"},{\"Name\":\"QuantityOrdered\",\"Value\":\"1\"},{\"Name\":\"QuantityOrderedUOM\",\"Value\":\"EA\"},{\"Name\":\"OrderItemPrice\",\"Value\":\"2444\"},{\"Name\":\"OrderDescription\",\"Value\":\"Example Product, Service for 4\"}]}],\"Identifier\":{\"SourceKey\":\"Test12345\",\"LogicbrokerKey\":\"53958\",\"LinkKey\":\"1611041326\"},\"OrderNumber\":\"Test12345\",\"PartnerPO\":\"51223\",\"OrderDate\":\"2016-03-03T00:00:00\",\"DocumentDate\":\"2016-11-08T16:47:20.823\",\"SenderCompanyId\":100988,\"ReceiverCompanyId\":100988,\"Taxes\":[{\"TaxAmount\":0.0,\"TaxRate\":0.0}],\"PaymentTerm\":{\"PayInNumberOfDays\":0,\"DiscountInNumberOfDays\":0,\"AvailableDiscount\":0.0,\"DueDate\":\"0001-01-01T12:00:00\",\"DiscountDueDate\":\"0001-01-01T12:00:00\",\"EffectiveDate\":\"0001-01-01T12:00:00\"},\"ShipmentInfos\":[{\"CarrierCode\":\"UPS_GR_COM\"}],\"ShipToAddress\":{\"CompanyName\":\"Harry Potter\",\"Address1\":\"0 Hogwarts lane\",\"City\":\"suwanee\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"12345\",\"ContactType\":0,\"ExtendedAttributes\":[{\"Name\":\"LocationIdentifier\",\"Value\":\"United States\"}]},\"BillToAddress\":{\"CompanyName\":\"Amazon.com.kydc,Inc.\",\"Title\":\"\",\"Province\":\"\",\"AddressCode\":\"KYDC\",\"StateCode\":\"\",\"ContactID\":\"\",\"ContactType\":0,\"TaxNumber\":\"\",\"Note\":\"\",\"ExtendedAttributes\":[{\"Name\":\"N103 - Bill To Address Code Qualifier\",\"Value\":\"92\"}]},\"OrderedByAddress\":{\"CompanyName\":\"Harry Potter\",\"Address1\":\"500 Hogwarts lane\",\"City\":\"suwanee\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"12345-0000\",\"Phone\":\"000-000-8216\",\"ContactType\":0,\"ExtendedAttributes\":[{\"Name\":\"PER - Order By Address Contact Qualifier\",\"Value\":\"ZZ\"}]},\"ExtendedAttributes\":[{\"Name\":\"REF - Order Number\",\"Value\":\"000-0001000-0000000\"},{\"Name\":\"REFID - ST\",\"Value\":\"1\"},{\"Name\":\"SourceSystem\",\"Value\":\"ExternalAPI\",\"Section\":\"Documents\"},{\"Name\":\"ShipToCompany\",\"Value\":\"Harry Potter\"},{\"Name\":\"ShipToAddress1\",\"Value\":\"0 Hogwarts lane\"},{\"Name\":\"ShipToCity\",\"Value\":\"suwanee\"},{\"Name\":\"ShipToState\",\"Value\":\"CA\"},{\"Name\":\"ShipToZip\",\"Value\":\"12345\"},{\"Name\":\"ShipToCountry\",\"Value\":\"US\"},{\"Name\":\"BillToCompany\",\"Value\":\"Amazon.com.kydc,Inc.\"},{\"Name\":\"BillToAddressCode\",\"Value\":\"KYDC\"},{\"Name\":\"ShipFromCompany\",\"Value\":\"XYZD\"},{\"Name\":\"ShipFromAddressCode\",\"Value\":\"XYZD\"},{\"Name\":\"StoreNumber\",\"Value\":\"1\"},{\"Name\":\"LogoURL1\",\"Value\":\"https://logicbrokeradx.blob.core.windows.net/logos/amzn_youraccount.jpg\"},{\"Name\":\"PartnerSku0\",\"Value\":\"00000\"},{\"Name\":\"ItemQuantity0\",\"Value\":\"1\"},{\"Name\":\"ItemPrice0\",\"Value\":\"31.99\"},{\"Name\":\"Sellerid0\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"ItemMessage0\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"ItemDescription0\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"OrderedByCompany\",\"Value\":\"Harry Potter\"},{\"Name\":\"OrderedByCity\",\"Value\":\"suwanee\"},{\"Name\":\"OrderedByState\",\"Value\":\"CA\"},{\"Name\":\"OrderedByZip\",\"Value\":\"12345-0000\"},{\"Name\":\"OrderedByCountry\",\"Value\":\"US\"},{\"Name\":\"OrderedByPhone\",\"Value\":\"000-000-8216\"},{\"Name\":\"PartnerSku1\",\"Value\":\"00000\"},{\"Name\":\"ItemQuantity1\",\"Value\":\"1\"},{\"Name\":\"ItemPrice1\",\"Value\":\"31.99\"},{\"Name\":\"Sellerid1\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"ItemMessage1\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"ItemDescription1\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"PartnerSku2\",\"Value\":\"1111\"},{\"Name\":\"ItemQuantity2\",\"Value\":\"1\"},{\"Name\":\"ItemPrice2\",\"Value\":\"31.99\"},{\"Name\":\"Sellerid2\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"ItemMessage2\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"ItemDescription2\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"PartnerSku3\",\"Value\":\"2222\"},{\"Name\":\"ItemQuantity3\",\"Value\":\"1\"},{\"Name\":\"ItemPrice3\",\"Value\":\"31.99\"},{\"Name\":\"Sellerid3\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"ItemMessage3\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"ItemDescription3\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"PartnerSku4\",\"Value\":\"33733\"},{\"Name\":\"ItemQuantity4\",\"Value\":\"1\"},{\"Name\":\"ItemPrice4\",\"Value\":\"31.99\"},{\"Name\":\"Sellerid4\",\"Value\":\"Amazon.com, LLC\"},{\"Name\":\"ItemMessage4\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"ItemDescription4\",\"Value\":\"Example Product, Service for 4\"},{\"Name\":\"LinkKey\",\"Value\":\"1611041326\",\"Section\":\"Documents\"},{\"Name\":\"Key\",\"Value\":\"\",\"Section\":\"Documents\"}],\"TotalAmount\":122.2,\"Currency\":\"USD\",\"StatusCode\":100,\"HandlingAmount\":0.0,\"Note\":\"This shipment completes your order.\\nFor detailed information about your orders, please visit Your Account. You can also print invoices, change your e-mail address and payment settings, alter your communication preferences, and much more-24 hours a day-at http://www.amazon.com/your-account.\\nVisit http://www.amazon.com/returns to return any item-including gifts-in unopened or original condition within 30 days for a full refund(other restrictions apply). Please have your order ID ready. Thanks for shopping at Amazon.com, and please come again!\"},{\"RequestedShipDate\":\"2016-10-21T12:00:00\",\"ShipFromAddress\":{\"ContactType\":0},\"RemitToAddress\":{\"ContactType\":0},\"MarkForAddress\":{\"ContactType\":0},\"TypeCode\":\"SA\",\"SalesRequirement\":0,\"OrderLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU123\",\"PartnerSKU\":\"SKU123\",\"UPC\":\"SKU123\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Casablanca Elephant/Diamonds Reversible Square Toss Pillow with Tassels (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Brown\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Brown\"},{\"Name\":\"Color\",\"Value\":\"Brown\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Casablanca Elephant/Diamonds Reversible Square Toss Pillow with Tassels (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"1\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"1\",\"Section\":\"LogicBroker\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"029664011771\",\"PartnerSKU\":\"029664011771\",\"UPC\":\"029664011771\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Royal Zanzibar Reversible Outdoor Lumbar Pillow (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"2\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Blue\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Blue\"},{\"Name\":\"Color\",\"Value\":\"Blue\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Royal Zanzibar Reversible Outdoor Lumbar Pillow (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"0\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"0\",\"Section\":\"LogicBroker\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"029664976568\",\"PartnerSKU\":\"029664976568\",\"UPC\":\"029664976568\"},\"Price\":79.99,\"RetailPrice\":79.99,\"Cost\":79.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Palmetto Green Reversible Bench Cushion\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":5.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.2,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":1.2,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.8,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"3\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Green\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"79.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"7999\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Green\"},{\"Name\":\"Color\",\"Value\":\"Green\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"7.2\"},{\"Name\":\"CustomerTax\",\"Value\":\"7.2\"},{\"Name\":\"CTP_RTL\",\"Value\":\"79.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"79.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Palmetto Green Reversible Bench Cushion\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"0\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"0\",\"Section\":\"LogicBroker\"}]}],\"Identifier\":{\"SourceKey\":\"146908\",\"LogicbrokerKey\":\"53975\",\"LinkKey\":\"1611041342\"},\"OrderNumber\":\"146908\",\"PartnerPO\":\"PO146908-001\",\"OrderDate\":\"2016-10-20T00:00:00\",\"DocumentDate\":\"2016-11-08T18:08:07.837\",\"SenderCompanyId\":101057,\"ReceiverCompanyId\":100988,\"Discounts\":[{\"DiscountName\":\"Total Discount\",\"DiscountPercent\":0.0,\"DiscountAmount\":0.0}],\"Taxes\":[{\"TaxTitle\":\"Total Tax\",\"TaxAmount\":50.31,\"TaxRate\":0.0}],\"PaymentTerm\":{\"PayInNumberOfDays\":0,\"DiscountInNumberOfDays\":0,\"AvailableDiscount\":0.0,\"DueDate\":\"0001-01-01T12:00:00\",\"DiscountDueDate\":\"0001-01-01T12:00:00\",\"EffectiveDate\":\"0001-01-01T12:00:00\"},\"ShipmentInfos\":[{\"CarrierCode\":\"UPSN\",\"ClassCode\":\"UPSN-CG\",\"SenderClassCode\":\"UPS Ground\",\"ReceiverClassCode\":\"UPS GROUND\",\"ServiceLevelCode\":\"CG\"}],\"ShipToAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - ShipToName\",\"Value\":\"Qa Test\"},{\"Name\":\"PER - Ship To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Ship To Address Qualifier\",\"Value\":\"ST\"},{\"Name\":\"PER01_ShipTo_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_ShipTo_EM\",\"Value\":\"luis@onestop.com\"}]},\"BillToAddress\":{\"CompanyName\":\"Linens and Things\",\"Title\":\"\",\"Address1\":\"550 continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"92045\",\"Province\":\"\",\"StateCode\":\"\",\"CountryCode\":\"1\",\"Phone\":\"(310) 8947710\",\"ContactID\":\"\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"TaxNumber\":\"\",\"Note\":\"\",\"ExtendedAttributes\":[{\"Name\":\"N101 - Bill To Address Qualifier\",\"Value\":\"BT\"}]},\"OrderedByAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - Ordered By Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"PER01_OrderedBy_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_OrderedBy_EM\",\"Value\":\"luis@onestop.com\"},{\"Name\":\"N101 - Ordered By Address Qualifier\",\"Value\":\"OB\"}]},\"ExtendedAttributes\":[{\"Name\":\"CreditCardLast4\",\"Value\":\"1111\"},{\"Name\":\"PaymentType\",\"Value\":\"Visa\"},{\"Name\":\"PaymentAmount\",\"Value\":\"609.46\"},{\"Name\":\"IsSignatureRequired\",\"Value\":\"False\"},{\"Name\":\"EstimatedShipDate\",\"Value\":\"2016-10-21\"},{\"Name\":\"SourceSystem\",\"Value\":\"ExternalAPI\",\"Section\":\"Documents\"},{\"Name\":\"SenderShipMethod\",\"Value\":\"UPSN-CG\"},{\"Name\":\"ReceiverShipMethod\",\"Value\":\"UPS GROUND\"},{\"Name\":\"ShipToAddress1\",\"Value\":\"550 Continental Blvd\"},{\"Name\":\"ShipToCity\",\"Value\":\"El Segundo\"},{\"Name\":\"ShipToState\",\"Value\":\"CA\"},{\"Name\":\"ShipToZip\",\"Value\":\"90245-5049\"},{\"Name\":\"ShipToCountry\",\"Value\":\"US\"},{\"Name\":\"ShipToPhone\",\"Value\":\"1111111111\"},{\"Name\":\"SalesOrderNumber\",\"Value\":\"136908\",\"Section\":\"Documents\"},{\"Name\":\"OrderIsPO\",\"Value\":\"TRUE\",\"Section\":\"Documents\"},{\"Name\":\"TD501 - Routing Code\",\"Value\":\"B\"},{\"Name\":\"TD502 - ID Code Qualifier\",\"Value\":\"2\"},{\"Name\":\"Charge - H850\",\"Value\":\"50.31\"},{\"Name\":\"CustomerTax\",\"Value\":\"50.31\"},{\"Name\":\"PER - OrderedByName\",\"Value\":\"Qa Test\"},{\"Name\":\"BEG01_Purpose\",\"Value\":\"00\"},{\"Name\":\"REFID - CO\",\"Value\":\"146908\"},{\"Name\":\"DTMID - 010\",\"Value\":\"2016-10-21\"},{\"Name\":\"REFID - PSM\",\"Value\":\"1111\"},{\"Name\":\"N - I710\",\"Value\":\"609.46\"},{\"Name\":\"N - I710 - Description\",\"Value\":\"Visa\"},{\"Name\":\"OrderID\",\"Value\":\"146908\"},{\"Name\":\"ShipToCompany\",\"Value\":\"Qa Test\"},{\"Name\":\"LinkKey\",\"Value\":\"1611041342\",\"Section\":\"Documents\"},{\"Name\":\"Key\",\"Value\":\"\",\"Section\":\"Documents\"},{\"Name\":\"Promotion - F800\",\"Value\":\"0.0\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"0.0\"}],\"TotalAmount\":609.46,\"StatusCode\":100,\"HandlingAmount\":0.0,\"Note\":\"\"},{\"RequestedShipDate\":\"2016-10-21T12:00:00\",\"ShipFromAddress\":{\"ContactType\":0},\"RemitToAddress\":{\"ContactType\":0},\"MarkForAddress\":{\"ContactType\":0},\"TypeCode\":\"SA\",\"SalesRequirement\":0,\"OrderLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU123\",\"PartnerSKU\":\"SKU123\",\"UPC\":\"SKU123\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Casablanca Elephant/Diamonds Pillow with Tassels (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Brown\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Brown\"},{\"Name\":\"Color\",\"Value\":\"Brown\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Casablanca Elephant/Diamonds Pillow with Tassels (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"0\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"1\",\"Section\":\"LogicBroker\"}]}],\"Identifier\":{\"SourceKey\":\"146908\",\"LogicbrokerKey\":\"53976\",\"LinkKey\":\"1611041342\"},\"OrderNumber\":\"146908\",\"PartnerPO\":\"PO146908-001\",\"OrderDate\":\"2016-10-20T00:00:00\",\"DocumentDate\":\"2016-11-08T18:25:04.17\",\"SenderCompanyId\":101057,\"ReceiverCompanyId\":100988,\"Discounts\":[{\"DiscountName\":\"Total Discount\",\"DiscountPercent\":0.0,\"DiscountAmount\":0.0}],\"Taxes\":[{\"TaxTitle\":\"Total Tax\",\"TaxAmount\":50.31,\"TaxRate\":0.0}],\"PaymentTerm\":{\"PayInNumberOfDays\":0,\"DiscountInNumberOfDays\":0,\"AvailableDiscount\":0.0,\"DueDate\":\"0001-01-01T12:00:00\",\"DiscountDueDate\":\"0001-01-01T12:00:00\",\"EffectiveDate\":\"0001-01-01T12:00:00\"},\"ShipmentInfos\":[{\"CarrierCode\":\"UPSN\",\"ClassCode\":\"UPSN-CG\",\"SenderClassCode\":\"UPS Ground\",\"ReceiverClassCode\":\"UPS GROUND\",\"ServiceLevelCode\":\"CG\"}],\"ShipToAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - ShipToName\",\"Value\":\"Qa Test\"},{\"Name\":\"PER - Ship To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Ship To Address Qualifier\",\"Value\":\"ST\"},{\"Name\":\"PER01_ShipTo_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_ShipTo_EM\",\"Value\":\"luis@onestop.com\"}]},\"BillToAddress\":{\"CompanyName\":\"Linens and Things\",\"Title\":\"\",\"Address1\":\"550 continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"92045\",\"Province\":\"\",\"StateCode\":\"\",\"CountryCode\":\"1\",\"Phone\":\"(310) 8947710\",\"ContactID\":\"\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"TaxNumber\":\"\",\"Note\":\"\",\"ExtendedAttributes\":[{\"Name\":\"N101 - Bill To Address Qualifier\",\"Value\":\"BT\"}]},\"OrderedByAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - Ordered By Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"PER01_OrderedBy_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_OrderedBy_EM\",\"Value\":\"luis@onestop.com\"},{\"Name\":\"N101 - Ordered By Address Qualifier\",\"Value\":\"OB\"}]},\"ExtendedAttributes\":[{\"Name\":\"CreditCardLast4\",\"Value\":\"1111\"},{\"Name\":\"PaymentType\",\"Value\":\"Visa\"},{\"Name\":\"PaymentAmount\",\"Value\":\"609.46\"},{\"Name\":\"IsSignatureRequired\",\"Value\":\"False\"},{\"Name\":\"EstimatedShipDate\",\"Value\":\"2016-10-21\"},{\"Name\":\"SourceSystem\",\"Value\":\"ExternalAPI\",\"Section\":\"Documents\"},{\"Name\":\"SenderShipMethod\",\"Value\":\"UPSN-CG\"},{\"Name\":\"ReceiverShipMethod\",\"Value\":\"UPS GROUND\"},{\"Name\":\"ShipToAddress1\",\"Value\":\"550 Continental Blvd\"},{\"Name\":\"ShipToCity\",\"Value\":\"El Segundo\"},{\"Name\":\"ShipToState\",\"Value\":\"CA\"},{\"Name\":\"ShipToZip\",\"Value\":\"90245-5049\"},{\"Name\":\"ShipToCountry\",\"Value\":\"US\"},{\"Name\":\"ShipToPhone\",\"Value\":\"1111111111\"},{\"Name\":\"SalesOrderNumber\",\"Value\":\"136908\",\"Section\":\"Documents\"},{\"Name\":\"OrderIsPO\",\"Value\":\"TRUE\",\"Section\":\"Documents\"},{\"Name\":\"TD501 - Routing Code\",\"Value\":\"B\"},{\"Name\":\"TD502 - ID Code Qualifier\",\"Value\":\"2\"},{\"Name\":\"Charge - H850\",\"Value\":\"50.31\"},{\"Name\":\"CustomerTax\",\"Value\":\"50.31\"},{\"Name\":\"PER - OrderedByName\",\"Value\":\"Qa Test\"},{\"Name\":\"BEG01_Purpose\",\"Value\":\"00\"},{\"Name\":\"REFID - CO\",\"Value\":\"146908\"},{\"Name\":\"DTMID - 010\",\"Value\":\"2016-10-21\"},{\"Name\":\"REFID - PSM\",\"Value\":\"1111\"},{\"Name\":\"N - I710\",\"Value\":\"609.46\"},{\"Name\":\"N - I710 - Description\",\"Value\":\"Visa\"},{\"Name\":\"OrderID\",\"Value\":\"146908\"},{\"Name\":\"ShipToCompany\",\"Value\":\"Qa Test\"},{\"Name\":\"LinkKey\",\"Value\":\"1611041342\",\"Section\":\"Documents\"},{\"Name\":\"Key\",\"Value\":\"\",\"Section\":\"Documents\"},{\"Name\":\"Promotion - F800\",\"Value\":\"0.0\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"0.0\"}],\"TotalAmount\":609.46,\"StatusCode\":100,\"HandlingAmount\":0.0,\"Note\":\"\"},{\"RequestedShipDate\":\"2016-10-21T12:00:00\",\"ShipFromAddress\":{\"ContactType\":0},\"RemitToAddress\":{\"ContactType\":0},\"MarkForAddress\":{\"ContactType\":0},\"TypeCode\":\"SA\",\"SalesRequirement\":0,\"OrderLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU123\",\"PartnerSKU\":\"SKU123\",\"UPC\":\"SKU123\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Casablanca Elephant/Diamonds Pillow with Tassels (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Brown\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Brown\"},{\"Name\":\"Color\",\"Value\":\"Brown\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Casablanca Elephant/Diamonds Pillow with Tassels (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"0\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"1\",\"Section\":\"LogicBroker\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU222\",\"PartnerSKU\":\"SKU222\",\"UPC\":\"SKU222\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Royal Zanzibar Reversible Outdoor Lumbar Pillow (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":2,\"QuantityUOM\":\"EA\",\"LineNumber\":\"2\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Blue\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Blue\"},{\"Name\":\"Color\",\"Value\":\"Blue\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Royal Zanzibar Reversible Outdoor Lumbar Pillow (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"1\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"0\",\"Section\":\"LogicBroker\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU333\",\"PartnerSKU\":\"SKU333\",\"UPC\":\"SKU333\"},\"Price\":79.99,\"RetailPrice\":79.99,\"Cost\":79.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Palmetto Green Reversible Bench Cushion\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":5.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.2,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":1.2,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.8,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":3,\"QuantityUOM\":\"EA\",\"LineNumber\":\"3\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Green\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"79.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"7999\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Green\"},{\"Name\":\"Color\",\"Value\":\"Green\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"7.2\"},{\"Name\":\"CustomerTax\",\"Value\":\"7.2\"},{\"Name\":\"CTP_RTL\",\"Value\":\"79.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"79.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Palmetto Green Reversible Bench Cushion\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"1\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"0\",\"Section\":\"LogicBroker\"}]}],\"Identifier\":{\"SourceKey\":\"146908\",\"LogicbrokerKey\":\"53992\",\"LinkKey\":\"1611041342\"},\"OrderNumber\":\"146908\",\"PartnerPO\":\"PO146908-001\",\"OrderDate\":\"2016-10-20T00:00:00\",\"DocumentDate\":\"2016-11-08T19:43:03.323\",\"SenderCompanyId\":101057,\"ReceiverCompanyId\":100988,\"Discounts\":[{\"DiscountName\":\"Total Discount\",\"DiscountPercent\":0.0,\"DiscountAmount\":0.0}],\"Taxes\":[{\"TaxTitle\":\"Total Tax\",\"TaxAmount\":50.31,\"TaxRate\":0.0}],\"PaymentTerm\":{\"PayInNumberOfDays\":0,\"DiscountInNumberOfDays\":0,\"AvailableDiscount\":0.0,\"DueDate\":\"0001-01-01T12:00:00\",\"DiscountDueDate\":\"0001-01-01T12:00:00\",\"EffectiveDate\":\"0001-01-01T12:00:00\"},\"ShipmentInfos\":[{\"CarrierCode\":\"UPSN\",\"ClassCode\":\"UPSN-CG\",\"SenderClassCode\":\"UPS Ground\",\"ReceiverClassCode\":\"UPS GROUND\",\"ServiceLevelCode\":\"CG\"}],\"ShipToAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - ShipToName\",\"Value\":\"Qa Test\"},{\"Name\":\"PER - Ship To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Ship To Address Qualifier\",\"Value\":\"ST\"},{\"Name\":\"PER01_ShipTo_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_ShipTo_EM\",\"Value\":\"luis@onestop.com\"}]},\"BillToAddress\":{\"CompanyName\":\"Linens and Things\",\"Title\":\"\",\"Address1\":\"550 continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"92045\",\"Province\":\"\",\"StateCode\":\"\",\"CountryCode\":\"1\",\"Phone\":\"(310) 8947710\",\"ContactID\":\"\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"TaxNumber\":\"\",\"Note\":\"\",\"ExtendedAttributes\":[{\"Name\":\"N101 - Bill To Address Qualifier\",\"Value\":\"BT\"}]},\"OrderedByAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - Ordered By Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"PER01_OrderedBy_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_OrderedBy_EM\",\"Value\":\"luis@onestop.com\"},{\"Name\":\"N101 - Ordered By Address Qualifier\",\"Value\":\"OB\"}]},\"ExtendedAttributes\":[{\"Name\":\"CreditCardLast4\",\"Value\":\"1111\"},{\"Name\":\"PaymentType\",\"Value\":\"Visa\"},{\"Name\":\"PaymentAmount\",\"Value\":\"609.46\"},{\"Name\":\"IsSignatureRequired\",\"Value\":\"False\"},{\"Name\":\"EstimatedShipDate\",\"Value\":\"2016-10-21\"},{\"Name\":\"SourceSystem\",\"Value\":\"ExternalAPI\",\"Section\":\"Documents\"},{\"Name\":\"SenderShipMethod\",\"Value\":\"UPSN-CG\"},{\"Name\":\"ReceiverShipMethod\",\"Value\":\"UPS GROUND\"},{\"Name\":\"ShipToAddress1\",\"Value\":\"550 Continental Blvd\"},{\"Name\":\"ShipToCity\",\"Value\":\"El Segundo\"},{\"Name\":\"ShipToState\",\"Value\":\"CA\"},{\"Name\":\"ShipToZip\",\"Value\":\"90245-5049\"},{\"Name\":\"ShipToCountry\",\"Value\":\"US\"},{\"Name\":\"ShipToPhone\",\"Value\":\"1111111111\"},{\"Name\":\"SalesOrderNumber\",\"Value\":\"136908\",\"Section\":\"Documents\"},{\"Name\":\"OrderIsPO\",\"Value\":\"TRUE\",\"Section\":\"Documents\"},{\"Name\":\"TD501 - Routing Code\",\"Value\":\"B\"},{\"Name\":\"TD502 - ID Code Qualifier\",\"Value\":\"2\"},{\"Name\":\"Charge - H850\",\"Value\":\"50.31\"},{\"Name\":\"CustomerTax\",\"Value\":\"50.31\"},{\"Name\":\"PER - OrderedByName\",\"Value\":\"Qa Test\"},{\"Name\":\"BEG01_Purpose\",\"Value\":\"00\"},{\"Name\":\"REFID - CO\",\"Value\":\"146908\"},{\"Name\":\"DTMID - 010\",\"Value\":\"2016-10-21\"},{\"Name\":\"REFID - PSM\",\"Value\":\"1111\"},{\"Name\":\"N - I710\",\"Value\":\"609.46\"},{\"Name\":\"N - I710 - Description\",\"Value\":\"Visa\"},{\"Name\":\"OrderID\",\"Value\":\"146908\"},{\"Name\":\"ShipToCompany\",\"Value\":\"Qa Test\"},{\"Name\":\"LinkKey\",\"Value\":\"1611041342\",\"Section\":\"Documents\"},{\"Name\":\"Key\",\"Value\":\"\",\"Section\":\"Documents\"},{\"Name\":\"Promotion - F800\",\"Value\":\"0.0\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"0.0\"}],\"TotalAmount\":609.46,\"StatusCode\":100,\"HandlingAmount\":0.0,\"Note\":\"\"},{\"RequestedShipDate\":\"2016-10-21T12:00:00\",\"ShipFromAddress\":{\"ContactType\":0},\"RemitToAddress\":{\"ContactType\":0},\"MarkForAddress\":{\"ContactType\":0},\"TypeCode\":\"SA\",\"SalesRequirement\":0,\"OrderLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU111\",\"PartnerSKU\":\"SKU111\",\"UPC\":\"SKU111\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Casablanca Elephant/Diamonds Pillow with Tassels (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Brown\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Brown\"},{\"Name\":\"Color\",\"Value\":\"Brown\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Casablanca Elephant/Diamonds Pillow with Tassels (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"0\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"1\",\"Section\":\"LogicBroker\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU222\",\"PartnerSKU\":\"SKU222\",\"UPC\":\"SKU222\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Royal Zanzibar Reversible Outdoor Lumbar Pillow (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":2,\"QuantityUOM\":\"EA\",\"LineNumber\":\"2\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Blue\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Blue\"},{\"Name\":\"Color\",\"Value\":\"Blue\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Royal Zanzibar Reversible Outdoor Lumbar Pillow (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"1\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"0\",\"Section\":\"LogicBroker\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU333\",\"PartnerSKU\":\"SKU333\",\"UPC\":\"SKU333\"},\"Price\":79.99,\"RetailPrice\":79.99,\"Cost\":79.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Palmetto Green Reversible Bench Cushion\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":5.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.2,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":1.2,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.8,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":3,\"QuantityUOM\":\"EA\",\"LineNumber\":\"3\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Green\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"79.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"7999\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Green\"},{\"Name\":\"Color\",\"Value\":\"Green\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"7.2\"},{\"Name\":\"CustomerTax\",\"Value\":\"7.2\"},{\"Name\":\"CTP_RTL\",\"Value\":\"79.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"79.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Palmetto Green Reversible Bench Cushion\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"1\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"0\",\"Section\":\"LogicBroker\"}]}],\"Identifier\":{\"SourceKey\":\"146908\",\"LogicbrokerKey\":\"53993\",\"LinkKey\":\"1611041354\"},\"OrderNumber\":\"146908\",\"PartnerPO\":\"TESTCASE2\",\"OrderDate\":\"2016-10-20T00:00:00\",\"DocumentDate\":\"2016-11-08T19:47:59.343\",\"SenderCompanyId\":101057,\"ReceiverCompanyId\":100988,\"Discounts\":[{\"DiscountName\":\"Total Discount\",\"DiscountPercent\":0.0,\"DiscountAmount\":0.0}],\"Taxes\":[{\"TaxTitle\":\"Total Tax\",\"TaxAmount\":50.31,\"TaxRate\":0.0}],\"PaymentTerm\":{\"PayInNumberOfDays\":0,\"DiscountInNumberOfDays\":0,\"AvailableDiscount\":0.0,\"DueDate\":\"0001-01-01T12:00:00\",\"DiscountDueDate\":\"0001-01-01T12:00:00\",\"EffectiveDate\":\"0001-01-01T12:00:00\"},\"ShipmentInfos\":[{\"CarrierCode\":\"UPSN\",\"ClassCode\":\"UPSN-CG\",\"SenderClassCode\":\"UPS Ground\",\"ReceiverClassCode\":\"UPS GROUND\",\"ServiceLevelCode\":\"CG\"}],\"ShipToAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - ShipToName\",\"Value\":\"Qa Test\"},{\"Name\":\"PER - Ship To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Ship To Address Qualifier\",\"Value\":\"ST\"},{\"Name\":\"PER01_ShipTo_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_ShipTo_EM\",\"Value\":\"luis@onestop.com\"}]},\"BillToAddress\":{\"CompanyName\":\"Linens and Things\",\"Title\":\"\",\"Address1\":\"550 continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"92045\",\"Province\":\"\",\"StateCode\":\"\",\"CountryCode\":\"1\",\"Phone\":\"(310) 8947710\",\"ContactID\":\"\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"TaxNumber\":\"\",\"Note\":\"\",\"ExtendedAttributes\":[{\"Name\":\"N101 - Bill To Address Qualifier\",\"Value\":\"BT\"}]},\"OrderedByAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - Ordered By Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"PER01_OrderedBy_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_OrderedBy_EM\",\"Value\":\"luis@onestop.com\"},{\"Name\":\"N101 - Ordered By Address Qualifier\",\"Value\":\"OB\"}]},\"ExtendedAttributes\":[{\"Name\":\"CreditCardLast4\",\"Value\":\"1111\"},{\"Name\":\"PaymentType\",\"Value\":\"Visa\"},{\"Name\":\"PaymentAmount\",\"Value\":\"609.46\"},{\"Name\":\"IsSignatureRequired\",\"Value\":\"False\"},{\"Name\":\"EstimatedShipDate\",\"Value\":\"2016-10-21\"},{\"Name\":\"SourceSystem\",\"Value\":\"ExternalAPI\",\"Section\":\"Documents\"},{\"Name\":\"SenderShipMethod\",\"Value\":\"UPSN-CG\"},{\"Name\":\"ReceiverShipMethod\",\"Value\":\"UPS GROUND\"},{\"Name\":\"ShipToAddress1\",\"Value\":\"550 Continental Blvd\"},{\"Name\":\"ShipToCity\",\"Value\":\"El Segundo\"},{\"Name\":\"ShipToState\",\"Value\":\"CA\"},{\"Name\":\"ShipToZip\",\"Value\":\"90245-5049\"},{\"Name\":\"ShipToCountry\",\"Value\":\"US\"},{\"Name\":\"ShipToPhone\",\"Value\":\"1111111111\"},{\"Name\":\"SalesOrderNumber\",\"Value\":\"136908\",\"Section\":\"Documents\"},{\"Name\":\"OrderIsPO\",\"Value\":\"TRUE\",\"Section\":\"Documents\"},{\"Name\":\"TD501 - Routing Code\",\"Value\":\"B\"},{\"Name\":\"TD502 - ID Code Qualifier\",\"Value\":\"2\"},{\"Name\":\"Charge - H850\",\"Value\":\"50.31\"},{\"Name\":\"CustomerTax\",\"Value\":\"50.31\"},{\"Name\":\"PER - OrderedByName\",\"Value\":\"Qa Test\"},{\"Name\":\"BEG01_Purpose\",\"Value\":\"00\"},{\"Name\":\"REFID - CO\",\"Value\":\"146908\"},{\"Name\":\"DTMID - 010\",\"Value\":\"2016-10-21\"},{\"Name\":\"REFID - PSM\",\"Value\":\"1111\"},{\"Name\":\"N - I710\",\"Value\":\"609.46\"},{\"Name\":\"N - I710 - Description\",\"Value\":\"Visa\"},{\"Name\":\"OrderID\",\"Value\":\"146908\"},{\"Name\":\"ShipToCompany\",\"Value\":\"Qa Test\"},{\"Name\":\"LinkKey\",\"Value\":\"1611041354\",\"Section\":\"Documents\"},{\"Name\":\"Key\",\"Value\":\"\",\"Section\":\"Documents\"},{\"Name\":\"Promotion - F800\",\"Value\":\"0.0\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"0.0\"}],\"TotalAmount\":609.46,\"StatusCode\":100,\"HandlingAmount\":0.0,\"Note\":\"\"},{\"RequestedShipDate\":\"2016-10-21T12:00:00\",\"ShipFromAddress\":{\"ContactType\":0},\"RemitToAddress\":{\"ContactType\":0},\"MarkForAddress\":{\"ContactType\":0},\"TypeCode\":\"SA\",\"SalesRequirement\":0,\"OrderLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU111\",\"PartnerSKU\":\"SKU111\",\"UPC\":\"SKU111\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Casablanca Elephant/Diamonds Pillow with Tassels (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Brown\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Brown\"},{\"Name\":\"Color\",\"Value\":\"Brown\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Casablanca Elephant/Diamonds Pillow with Tassels (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"0\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"1\",\"Section\":\"LogicBroker\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU222\",\"PartnerSKU\":\"SKU222\",\"UPC\":\"SKU222\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Royal Zanzibar Reversible Outdoor Lumbar Pillow (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":2,\"QuantityUOM\":\"EA\",\"LineNumber\":\"2\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Blue\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Blue\"},{\"Name\":\"Color\",\"Value\":\"Blue\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Royal Zanzibar Reversible Outdoor Lumbar Pillow (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"1\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"0\",\"Section\":\"LogicBroker\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU333\",\"PartnerSKU\":\"SKU333\",\"UPC\":\"SKU333\"},\"Price\":79.99,\"RetailPrice\":79.99,\"Cost\":79.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Palmetto Green Reversible Bench Cushion\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":5.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.2,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":1.2,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.8,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":3,\"QuantityUOM\":\"EA\",\"LineNumber\":\"3\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Green\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"79.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"7999\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Green\"},{\"Name\":\"Color\",\"Value\":\"Green\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"7.2\"},{\"Name\":\"CustomerTax\",\"Value\":\"7.2\"},{\"Name\":\"CTP_RTL\",\"Value\":\"79.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"79.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Palmetto Green Reversible Bench Cushion\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"1\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"0\",\"Section\":\"LogicBroker\"}]}],\"Identifier\":{\"SourceKey\":\"TESTCASE2\",\"LogicbrokerKey\":\"53994\",\"LinkKey\":\"1611041354\"},\"OrderNumber\":\"TESTCASE2\",\"PartnerPO\":\"TESTCASE2\",\"OrderDate\":\"2016-10-20T00:00:00\",\"DocumentDate\":\"2016-11-08T19:48:42.08\",\"SenderCompanyId\":101057,\"ReceiverCompanyId\":100988,\"Discounts\":[{\"DiscountName\":\"Total Discount\",\"DiscountPercent\":0.0,\"DiscountAmount\":0.0}],\"Taxes\":[{\"TaxTitle\":\"Total Tax\",\"TaxAmount\":50.31,\"TaxRate\":0.0}],\"PaymentTerm\":{\"PayInNumberOfDays\":0,\"DiscountInNumberOfDays\":0,\"AvailableDiscount\":0.0,\"DueDate\":\"0001-01-01T12:00:00\",\"DiscountDueDate\":\"0001-01-01T12:00:00\",\"EffectiveDate\":\"0001-01-01T12:00:00\"},\"ShipmentInfos\":[{\"CarrierCode\":\"UPSN\",\"ClassCode\":\"UPSN-CG\",\"SenderClassCode\":\"UPS Ground\",\"ReceiverClassCode\":\"UPS GROUND\",\"ServiceLevelCode\":\"CG\"}],\"ShipToAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - ShipToName\",\"Value\":\"Qa Test\"},{\"Name\":\"PER - Ship To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Ship To Address Qualifier\",\"Value\":\"ST\"},{\"Name\":\"PER01_ShipTo_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_ShipTo_EM\",\"Value\":\"luis@onestop.com\"}]},\"BillToAddress\":{\"CompanyName\":\"Linens and Things\",\"Title\":\"\",\"Address1\":\"550 continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"92045\",\"Province\":\"\",\"StateCode\":\"\",\"CountryCode\":\"1\",\"Phone\":\"(310) 8947710\",\"ContactID\":\"\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"TaxNumber\":\"\",\"Note\":\"\",\"ExtendedAttributes\":[{\"Name\":\"N101 - Bill To Address Qualifier\",\"Value\":\"BT\"}]},\"OrderedByAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - Ordered By Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"PER01_OrderedBy_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_OrderedBy_EM\",\"Value\":\"luis@onestop.com\"},{\"Name\":\"N101 - Ordered By Address Qualifier\",\"Value\":\"OB\"}]},\"ExtendedAttributes\":[{\"Name\":\"CreditCardLast4\",\"Value\":\"1111\"},{\"Name\":\"PaymentType\",\"Value\":\"Visa\"},{\"Name\":\"PaymentAmount\",\"Value\":\"609.46\"},{\"Name\":\"IsSignatureRequired\",\"Value\":\"False\"},{\"Name\":\"EstimatedShipDate\",\"Value\":\"2016-10-21\"},{\"Name\":\"SourceSystem\",\"Value\":\"ExternalAPI\",\"Section\":\"Documents\"},{\"Name\":\"SenderShipMethod\",\"Value\":\"UPSN-CG\"},{\"Name\":\"ReceiverShipMethod\",\"Value\":\"UPS GROUND\"},{\"Name\":\"ShipToAddress1\",\"Value\":\"550 Continental Blvd\"},{\"Name\":\"ShipToCity\",\"Value\":\"El Segundo\"},{\"Name\":\"ShipToState\",\"Value\":\"CA\"},{\"Name\":\"ShipToZip\",\"Value\":\"90245-5049\"},{\"Name\":\"ShipToCountry\",\"Value\":\"US\"},{\"Name\":\"ShipToPhone\",\"Value\":\"1111111111\"},{\"Name\":\"OrderIsPO\",\"Value\":\"TRUE\",\"Section\":\"Documents\"},{\"Name\":\"TD501 - Routing Code\",\"Value\":\"B\"},{\"Name\":\"TD502 - ID Code Qualifier\",\"Value\":\"2\"},{\"Name\":\"Charge - H850\",\"Value\":\"50.31\"},{\"Name\":\"CustomerTax\",\"Value\":\"50.31\"},{\"Name\":\"PER - OrderedByName\",\"Value\":\"Qa Test\"},{\"Name\":\"BEG01_Purpose\",\"Value\":\"00\"},{\"Name\":\"REFID - CO\",\"Value\":\"TESTCASE2\"},{\"Name\":\"DTMID - 010\",\"Value\":\"2016-10-21\"},{\"Name\":\"REFID - PSM\",\"Value\":\"1111\"},{\"Name\":\"N - I710\",\"Value\":\"609.46\"},{\"Name\":\"N - I710 - Description\",\"Value\":\"Visa\"},{\"Name\":\"OrderID\",\"Value\":\"TESTCASE2\"},{\"Name\":\"ShipToCompany\",\"Value\":\"Qa Test\"},{\"Name\":\"LinkKey\",\"Value\":\"1611041354\",\"Section\":\"Documents\"},{\"Name\":\"Key\",\"Value\":\"\",\"Section\":\"Documents\"},{\"Name\":\"Promotion - F800\",\"Value\":\"0.0\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"0.0\"}],\"TotalAmount\":609.46,\"StatusCode\":100,\"HandlingAmount\":0.0,\"Note\":\"\"},{\"RequestedShipDate\":\"2016-10-21T12:00:00\",\"ShipFromAddress\":{\"ContactType\":0},\"RemitToAddress\":{\"ContactType\":0},\"MarkForAddress\":{\"ContactType\":0},\"TypeCode\":\"SA\",\"SalesRequirement\":0,\"OrderLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU111\",\"PartnerSKU\":\"SKU111\",\"UPC\":\"SKU111\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Casablanca Elephant/Diamonds Pillow with Tassels (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Brown\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Brown\"},{\"Name\":\"Color\",\"Value\":\"Brown\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Casablanca Elephant/Diamonds Pillow with Tassels (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"0\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"1\",\"Section\":\"LogicBroker\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU222\",\"PartnerSKU\":\"SKU222\",\"UPC\":\"SKU222\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Royal Zanzibar Reversible Outdoor Lumbar Pillow (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":2,\"QuantityUOM\":\"EA\",\"LineNumber\":\"2\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Blue\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Blue\"},{\"Name\":\"Color\",\"Value\":\"Blue\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Royal Zanzibar Reversible Outdoor Lumbar Pillow (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"1\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"0\",\"Section\":\"LogicBroker\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU333\",\"PartnerSKU\":\"SKU333\",\"UPC\":\"SKU333\"},\"Price\":79.99,\"RetailPrice\":79.99,\"Cost\":79.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Palmetto Green Reversible Bench Cushion\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":5.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.2,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":1.2,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.8,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":3,\"QuantityUOM\":\"EA\",\"LineNumber\":\"3\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Green\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"79.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"7999\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Green\"},{\"Name\":\"Color\",\"Value\":\"Green\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"7.2\"},{\"Name\":\"CustomerTax\",\"Value\":\"7.2\"},{\"Name\":\"CTP_RTL\",\"Value\":\"79.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"79.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Palmetto Green Reversible Bench Cushion\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"1\",\"Section\":\"Order\"},{\"Name\":\"QtyCancelled\",\"Value\":\"0\",\"Section\":\"LogicBroker\"}]}],\"Identifier\":{\"SourceKey\":\"POTESTCASE2\",\"LogicbrokerKey\":\"54011\",\"LinkKey\":\"1611041361\"},\"OrderNumber\":\"POTESTCASE2\",\"PartnerPO\":\"POTESTCASE2\",\"OrderDate\":\"2016-10-20T00:00:00\",\"DocumentDate\":\"2016-11-08T21:22:10.707\",\"SenderCompanyId\":101057,\"ReceiverCompanyId\":100988,\"Discounts\":[{\"DiscountName\":\"Total Discount\",\"DiscountPercent\":0.0,\"DiscountAmount\":0.0}],\"Taxes\":[{\"TaxTitle\":\"Total Tax\",\"TaxAmount\":50.31,\"TaxRate\":0.0}],\"PaymentTerm\":{\"PayInNumberOfDays\":0,\"DiscountInNumberOfDays\":0,\"AvailableDiscount\":0.0,\"DueDate\":\"0001-01-01T12:00:00\",\"DiscountDueDate\":\"0001-01-01T12:00:00\",\"EffectiveDate\":\"0001-01-01T12:00:00\"},\"ShipmentInfos\":[{\"CarrierCode\":\"UPSN\",\"ClassCode\":\"UPSN-CG\",\"SenderClassCode\":\"UPS Ground\",\"ReceiverClassCode\":\"UPS GROUND\",\"ServiceLevelCode\":\"CG\"}],\"ShipToAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - ShipToName\",\"Value\":\"Qa Test\"},{\"Name\":\"PER - Ship To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Ship To Address Qualifier\",\"Value\":\"ST\"},{\"Name\":\"PER01_ShipTo_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_ShipTo_EM\",\"Value\":\"luis@onestop.com\"}]},\"BillToAddress\":{\"CompanyName\":\"Linens and Things\",\"Title\":\"\",\"Address1\":\"550 continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"92045\",\"Province\":\"\",\"StateCode\":\"\",\"CountryCode\":\"1\",\"Phone\":\"(310) 8947710\",\"ContactID\":\"\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"TaxNumber\":\"\",\"Note\":\"\",\"ExtendedAttributes\":[{\"Name\":\"N101 - Bill To Address Qualifier\",\"Value\":\"BT\"}]},\"OrderedByAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - Ordered By Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"PER01_OrderedBy_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_OrderedBy_EM\",\"Value\":\"luis@onestop.com\"},{\"Name\":\"N101 - Ordered By Address Qualifier\",\"Value\":\"OB\"}]},\"ExtendedAttributes\":[{\"Name\":\"CreditCardLast4\",\"Value\":\"1111\"},{\"Name\":\"PaymentType\",\"Value\":\"Visa\"},{\"Name\":\"PaymentAmount\",\"Value\":\"609.46\"},{\"Name\":\"IsSignatureRequired\",\"Value\":\"False\"},{\"Name\":\"EstimatedShipDate\",\"Value\":\"2016-10-21\"},{\"Name\":\"SourceSystem\",\"Value\":\"ExternalAPI\",\"Section\":\"Documents\"},{\"Name\":\"SenderShipMethod\",\"Value\":\"UPSN-CG\"},{\"Name\":\"ReceiverShipMethod\",\"Value\":\"UPS GROUND\"},{\"Name\":\"ShipToAddress1\",\"Value\":\"550 Continental Blvd\"},{\"Name\":\"ShipToCity\",\"Value\":\"El Segundo\"},{\"Name\":\"ShipToState\",\"Value\":\"CA\"},{\"Name\":\"ShipToZip\",\"Value\":\"90245-5049\"},{\"Name\":\"ShipToCountry\",\"Value\":\"US\"},{\"Name\":\"ShipToPhone\",\"Value\":\"1111111111\"},{\"Name\":\"OrderIsPO\",\"Value\":\"TRUE\",\"Section\":\"Documents\"},{\"Name\":\"TD501 - Routing Code\",\"Value\":\"B\"},{\"Name\":\"TD502 - ID Code Qualifier\",\"Value\":\"2\"},{\"Name\":\"Charge - H850\",\"Value\":\"50.31\"},{\"Name\":\"CustomerTax\",\"Value\":\"50.31\"},{\"Name\":\"PER - OrderedByName\",\"Value\":\"Qa Test\"},{\"Name\":\"BEG01_Purpose\",\"Value\":\"00\"},{\"Name\":\"REFID - CO\",\"Value\":\"POTESTCASE2\"},{\"Name\":\"DTMID - 010\",\"Value\":\"2016-10-21\"},{\"Name\":\"REFID - PSM\",\"Value\":\"1111\"},{\"Name\":\"N - I710\",\"Value\":\"609.46\"},{\"Name\":\"N - I710 - Description\",\"Value\":\"Visa\"},{\"Name\":\"OrderID\",\"Value\":\"POTESTCASE2\"},{\"Name\":\"ShipToCompany\",\"Value\":\"Qa Test\"},{\"Name\":\"LinkKey\",\"Value\":\"1611041361\",\"Section\":\"Documents\"},{\"Name\":\"Key\",\"Value\":\"\",\"Section\":\"Documents\"},{\"Name\":\"Promotion - F800\",\"Value\":\"0.0\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"0.0\"}],\"TotalAmount\":609.46,\"StatusCode\":100,\"HandlingAmount\":0.0,\"Note\":\"\"},{\"RequestedShipDate\":\"2016-10-21T12:00:00\",\"ShipFromAddress\":{\"ContactType\":0},\"RemitToAddress\":{\"ContactType\":0},\"MarkForAddress\":{\"ContactType\":0},\"TypeCode\":\"SA\",\"SalesRequirement\":0,\"OrderLines\":[{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU111\",\"PartnerSKU\":\"SKU111\",\"UPC\":\"SKU111\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Casablanca Elephant/Diamonds Pillow with Tassels (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":1,\"QuantityUOM\":\"EA\",\"LineNumber\":\"1\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Brown\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Brown\"},{\"Name\":\"Color\",\"Value\":\"Brown\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Casablanca Elephant/Diamonds Pillow with Tassels (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"1\",\"Section\":\"Order\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU222\",\"PartnerSKU\":\"SKU222\",\"UPC\":\"SKU222\"},\"Price\":47.99,\"RetailPrice\":47.99,\"Cost\":47.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Royal Zanzibar Reversible Outdoor Lumbar Pillow (2-Pack)\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":3.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.12,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.72,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.48,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":2,\"QuantityUOM\":\"EA\",\"LineNumber\":\"2\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Blue\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"47.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"4799\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Blue\"},{\"Name\":\"Color\",\"Value\":\"Blue\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"4.32\"},{\"Name\":\"CustomerTax\",\"Value\":\"4.32\"},{\"Name\":\"CTP_RTL\",\"Value\":\"47.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"47.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Royal Zanzibar Reversible Outdoor Lumbar Pillow (2-Pack)\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"2\",\"Section\":\"Order\"}]},{\"ItemIdentifier\":{\"SupplierSKU\":\"SKU333\",\"PartnerSKU\":\"SKU333\",\"UPC\":\"SKU333\"},\"Price\":79.99,\"RetailPrice\":79.99,\"Cost\":79.99,\"MSRP\":0.0,\"Description\":\"Bombay Outdoors Palmetto Green Reversible Bench Cushion\",\"Discounts\":[{\"DiscountAmount\":0.0}],\"ShipmentInfos\":[],\"Taxes\":[{\"TaxTitle\":\"STATE\",\"TaxAmount\":5.0,\"TaxRate\":0.0},{\"TaxTitle\":\"COUNTY\",\"TaxAmount\":0.2,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":1.2,\"TaxRate\":0.0},{\"TaxTitle\":\"SPECIAL\",\"TaxAmount\":0.8,\"TaxRate\":0.0}],\"IsDropShip\":false,\"Quantity\":3,\"QuantityUOM\":\"EA\",\"LineNumber\":\"3\",\"Weight\":0.0,\"ExtendedAttributes\":[{\"Name\":\"ColorName\",\"Value\":\"Green\"},{\"Name\":\"SizeName\",\"Value\":\"One Size\"},{\"Name\":\"ItemTotal\",\"Value\":\"79.99\"},{\"Name\":\"IsReturnable\",\"Value\":\"True\"},{\"Name\":\"RetailPrice\",\"Value\":\"7999\",\"Section\":\"Documents\"},{\"Name\":\"UPC - Product Qualifier-1\",\"Value\":\"UP\"},{\"Name\":\"DescriptionQualifier\",\"Value\":\"08\"},{\"Name\":\"PID_35\",\"Value\":\"Green\"},{\"Name\":\"Color\",\"Value\":\"Green\"},{\"Name\":\"PID_SIZ\",\"Value\":\"One Size\"},{\"Name\":\"Size\",\"Value\":\"One Size\"},{\"Name\":\"PID_SE\",\"Value\":\"True\"},{\"Name\":\"Charge - H850\",\"Value\":\"7.2\"},{\"Name\":\"CustomerTax\",\"Value\":\"7.2\"},{\"Name\":\"CTP_RTL\",\"Value\":\"79.99\"},{\"Name\":\"CTP_TOT\",\"Value\":\"79.99\"},{\"Name\":\"ItemDescription\",\"Value\":\"Bombay Outdoors Palmetto Green Reversible Bench Cushion\"},{\"Name\":\"OrderQuantityShipped\",\"Value\":\"3\",\"Section\":\"Order\"}]}],\"Identifier\":{\"SourceKey\":\"POTESTCASE-2\",\"LogicbrokerKey\":\"54012\",\"LinkKey\":\"1611041362\"},\"OrderNumber\":\"POTESTCASE-2\",\"PartnerPO\":\"POTESTCASE-2\",\"OrderDate\":\"2016-10-20T00:00:00\",\"DocumentDate\":\"2016-11-08T21:24:38.497\",\"SenderCompanyId\":101057,\"ReceiverCompanyId\":100988,\"Discounts\":[{\"DiscountName\":\"Total Discount\",\"DiscountPercent\":0.0,\"DiscountAmount\":0.0}],\"Taxes\":[{\"TaxTitle\":\"Total Tax\",\"TaxAmount\":50.31,\"TaxRate\":0.0}],\"PaymentTerm\":{\"PayInNumberOfDays\":0,\"DiscountInNumberOfDays\":0,\"AvailableDiscount\":0.0,\"DueDate\":\"0001-01-01T12:00:00\",\"DiscountDueDate\":\"0001-01-01T12:00:00\",\"EffectiveDate\":\"0001-01-01T12:00:00\"},\"ShipmentInfos\":[{\"CarrierCode\":\"UPSN\",\"ClassCode\":\"UPSN-CG\",\"SenderClassCode\":\"UPS Ground\",\"ReceiverClassCode\":\"UPS GROUND\",\"ServiceLevelCode\":\"CG\"}],\"ShipToAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - ShipToName\",\"Value\":\"Qa Test\"},{\"Name\":\"PER - Ship To Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"N101 - Ship To Address Qualifier\",\"Value\":\"ST\"},{\"Name\":\"PER01_ShipTo_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_ShipTo_EM\",\"Value\":\"luis@onestop.com\"}]},\"BillToAddress\":{\"CompanyName\":\"Linens and Things\",\"Title\":\"\",\"Address1\":\"550 continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"92045\",\"Province\":\"\",\"StateCode\":\"\",\"CountryCode\":\"1\",\"Phone\":\"(310) 8947710\",\"ContactID\":\"\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"TaxNumber\":\"\",\"Note\":\"\",\"ExtendedAttributes\":[{\"Name\":\"N101 - Bill To Address Qualifier\",\"Value\":\"BT\"}]},\"OrderedByAddress\":{\"CompanyName\":\"Qa Test\",\"FirstName\":\"Qa\",\"LastName\":\"Test\",\"Address1\":\"550 Continental Blvd\",\"City\":\"El Segundo\",\"State\":\"CA\",\"Country\":\"US\",\"Zip\":\"90245-5049\",\"CountryCode\":\"1\",\"Phone\":\"1111111111\",\"ContactType\":0,\"Email\":\"luis@onestop.com\",\"ExtendedAttributes\":[{\"Name\":\"PER - Ordered By Address Contact Qualifier\",\"Value\":\"IC\"},{\"Name\":\"PER01_OrderedBy_TE\",\"Value\":\"1111111111\"},{\"Name\":\"PER02_OrderedBy_EM\",\"Value\":\"luis@onestop.com\"},{\"Name\":\"N101 - Ordered By Address Qualifier\",\"Value\":\"OB\"}]},\"ExtendedAttributes\":[{\"Name\":\"CreditCardLast4\",\"Value\":\"1111\"},{\"Name\":\"PaymentType\",\"Value\":\"Visa\"},{\"Name\":\"PaymentAmount\",\"Value\":\"609.46\"},{\"Name\":\"IsSignatureRequired\",\"Value\":\"False\"},{\"Name\":\"EstimatedShipDate\",\"Value\":\"2016-10-21\"},{\"Name\":\"SourceSystem\",\"Value\":\"ExternalAPI\",\"Section\":\"Documents\"},{\"Name\":\"SenderShipMethod\",\"Value\":\"UPSN-CG\"},{\"Name\":\"ReceiverShipMethod\",\"Value\":\"UPS GROUND\"},{\"Name\":\"ShipToAddress1\",\"Value\":\"550 Continental Blvd\"},{\"Name\":\"ShipToCity\",\"Value\":\"El Segundo\"},{\"Name\":\"ShipToState\",\"Value\":\"CA\"},{\"Name\":\"ShipToZip\",\"Value\":\"90245-5049\"},{\"Name\":\"ShipToCountry\",\"Value\":\"US\"},{\"Name\":\"ShipToPhone\",\"Value\":\"1111111111\"},{\"Name\":\"OrderIsPO\",\"Value\":\"TRUE\",\"Section\":\"Documents\"},{\"Name\":\"TD501 - Routing Code\",\"Value\":\"B\"},{\"Name\":\"TD502 - ID Code Qualifier\",\"Value\":\"2\"},{\"Name\":\"Charge - H850\",\"Value\":\"50.31\"},{\"Name\":\"CustomerTax\",\"Value\":\"50.31\"},{\"Name\":\"PER - OrderedByName\",\"Value\":\"Qa Test\"},{\"Name\":\"BEG01_Purpose\",\"Value\":\"00\"},{\"Name\":\"REFID - CO\",\"Value\":\"POTESTCASE-2\"},{\"Name\":\"DTMID - 010\",\"Value\":\"2016-10-21\"},{\"Name\":\"REFID - PSM\",\"Value\":\"1111\"},{\"Name\":\"N - I710\",\"Value\":\"609.46\"},{\"Name\":\"N - I710 - Description\",\"Value\":\"Visa\"},{\"Name\":\"OrderID\",\"Value\":\"POTESTCASE-2\"},{\"Name\":\"ShipToCompany\",\"Value\":\"Qa Test\"},{\"Name\":\"LinkKey\",\"Value\":\"1611041362\",\"Section\":\"Documents\"},{\"Name\":\"Key\",\"Value\":\"\",\"Section\":\"Documents\"},{\"Name\":\"Promotion - F800\",\"Value\":\"0.0\"},{\"Name\":\"CustomerDiscount\",\"Value\":\"0.0\"}],\"TotalAmount\":609.46,\"StatusCode\":100,\"HandlingAmount\":0.0,\"Note\":\"\"}],\"TotalPages\":6,\"CurrentPage\":0,\"TotalRecords\":52}"}],"_postman_id":"408a8f57-1bdd-4769-8da5-83ac1cf68783"},{"name":"Step 2: Get Pick List/Packing Slip on Order (Optional)","id":"583c26a7-9998-4705-bd88-739a36a3dfef","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v1/Orders/:LogicbrokerKey/PickList?FileType=pdf&subscription-key={{subscription-key}}","description":"<p>This step will be used if your retailer requires a branded packing slip. In the response logicbroker will provide a link to download the document in one of the specified formats. The step is listed as <strong>optional</strong> because it is unnecessary if you will be creating packing slips in your own internal system. \n<br />\n<br />\nIn addition, the packing slip will get created containing all items on the order. If you will be shipping orders in multiple boxes and need the packing slip to reflect the contents of the box, use the <strong>Get Packing Slip on Shipment</strong>. \n<br />\n<br />\nLast, if you need to get multiple packing slips per response you can use this endpoint:\n<br />\n<br />\n<code>https://stage.commerceapi.io/api/v1/Orders/PickList</code>\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Order/Order_GetOrderPickListToken\">API reference</a>. </p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>Filters.LogicbrokerKey</b><br /></td><td>The unique identifier for the document. Will be used to specify which order's pick list/packing slip to get. </td><td>string</td></tr><tr><td><b>FileType</b><br /></td><td>This will specify what format you would like to download the Pick List/Packing Slip. <b>Valid types</b>: jpg, png, pdf, ps, zpl</td><td>string</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>Within the collection, the <strong>LogicBrokerKey</strong> from step 1 will be used and <strong>pdf</strong> will be the defaulted <strong>FileType</strong> parameter. </p>\n","urlObject":{"protocol":"https","path":["api","v1","Orders",":LogicbrokerKey","PickList"],"host":["stage","commerceapi","io"],"query":[{"key":"FileType","value":"pdf"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"LogicbrokerKey","type":"any","value":"{{LogicbrokerKey}}","key":"LogicbrokerKey"},{"type":"any","value":"{"},{"type":"any","value":"{","key":1},{"type":"any","value":"L","key":2},{"type":"any","value":"o","key":3},{"type":"any","value":"g","key":4},{"type":"any","value":"i","key":5},{"type":"any","value":"c","key":6},{"type":"any","value":"b","key":7},{"type":"any","value":"r","key":8},{"type":"any","value":"o","key":9},{"type":"any","value":"k","key":10},{"type":"any","value":"e","key":11},{"type":"any","value":"r","key":12},{"type":"any","value":"K","key":13},{"type":"any","value":"e","key":14},{"type":"any","value":"y","key":15},{"type":"any","value":"}","key":16},{"type":"any","value":"}","key":17}]}},"response":[{"id":"6e9b554f-1764-425f-9ab4-408494962fe5","name":"SamplePickList","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/Orders/:LogicbrokerKey/PickList?FileType=pdf&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Orders",":LogicbrokerKey","PickList"],"query":[{"key":"FileType","value":"pdf"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"LogicbrokerKey"}]}},"status":"OK","code":200,"_postman_previewlanguage":"javascript","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Fri, 30 Sep 2016 16:03:17 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"https://stage.commerceapi.io/api/v1/Orders/40923/PickList?imagetoken=96f8149d-82f7-42ea-9555-3c8f74aca043\"}"}],"_postman_id":"583c26a7-9998-4705-bd88-739a36a3dfef"},{"name":"Step 3: Update Order Status","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"]}}],"id":"a829b360-6ff7-40ad-8aa8-6bb992d3ef52","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"Status\": \"Acknowledged\",\r\n  \"OnlyIncreaseStatus\": true,\r\n  \"LogicbrokerKeys\": [\r\n    \"{{LogicbrokerKey}}\"\r\n  ]\r\n}"},"url":"https://stage.commerceapi.io/api/v2/Orders/Status?subscription-key={{subscription-key}}","description":"<p>After all order information is gathered and successfully processed to your internal system, it is recommended to update the order status. This will prevent re-pulling the order down and let the retailer know that the order was successfully picked up. <a href=\"http://help.logicbroker.com/hc/en-us/articles/211064863-Order-Standard-Statuses\">Here is an article on standard order statuses.</a>\n<br />\n<br />\nIt is recommended after picking up orders using the <strong>/Orders/Ready</strong> endpoint and updating the status to <strong>200 (Acknowledged)</strong>. The <strong>Status</strong> string can be either the status code (200) or the label (Acknowledged).\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Order/Order_BulkUpdateStatus\">API reference</a>. </p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>request</b><br /></td><td>Please refer to the request body shown to the right. You can add multiple LogicbrokerKeys to update multiple documents with one call. This is the preferred method as it will limit the amount of calls needed to make to our endpoint.   </td><td>body</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>Within the collection, again the <strong>LogicbrokerKey</strong> will persist as a global variable from Step 1 and the <strong>Status</strong> will update for that document with a defaulted value of <strong>200</strong> (Acknowledged).\n<br />\n<br />\nOn successfully updating order status you will receive a status code of <strong>200</strong> with the details of all the keys that were updated.</p>\n","urlObject":{"protocol":"https","path":["api","v2","Orders","Status"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"4d5e7326-602f-4951-9744-3ca0592d8065","name":"Step 3: Update Order Status","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"Status\": \"Acknowledged\",\r\n  \"LogicbrokerKeys\": [\r\n    \"{{LogicbrokerKey}}\"\r\n  ]\r\n}"},"url":{"raw":"https://stage.commerceapi.io/api/v2/Orders/Status?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v2","Orders","Status"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"*","description":""},{"name":"cache-control","key":"cache-control","value":"private","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Wed, 17 Jan 2018 17:47:42 GMT","description":""},{"name":"server","key":"server","value":"Microsoft-IIS/8.5","description":""},{"name":"strict-transport-security","key":"strict-transport-security","value":"max-age=31536000","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-aspnet-version","key":"x-aspnet-version","value":"4.0.30319","description":""},{"name":"x-logicbroker-request-limit","key":"x-logicbroker-request-limit","value":"100","description":""},{"name":"x-powered-by","key":"x-powered-by","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Records\":[\"112312\"],\"TotalPages\":1,\"CurrentPage\":0,\"TotalRecords\":1}"}],"_postman_id":"a829b360-6ff7-40ad-8aa8-6bb992d3ef52"},{"name":"Step 4: Post an Acknowledgement","id":"04aba77d-d7b8-4501-bbee-2015016aacde","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{{AckDetail}}"},"url":"https://stage.commerceapi.io/api/v1/Acknowledgements?subscription-key={{subscription-key}}","description":"<p>Acknowledgements are used to either accept, reject/cancel, or backorder order items. This document lets the brand know what is expected to be fulfilled and when.\n<br />\n<br />\nIf you will be accepting all POs, logicbroker can create these automatically off of the PO data accepting all line items. If the brand/retailer requires a scheduled ship date we can provided a defaulted calculated value; for example we can set an estimated ship date at 24 hours from receiving the Order.\n<br />\n<br />\nOnce an <strong>Acknowledgement</strong> is created and successfully sent to the retailer, the order status will get updated to <strong>500 (Ready to Ship)</strong>. In addition, the status for the acknowledgement will go to <strong>1000 (Complete)</strong> when it is successfully processed. For more details on all of the standard Acknowledgement statuses, <a href=\"http://help.logicbroker.com/hc/en-us/articles/211064943-Acknowledgement-Standard-Statuses\">see this article.</a>\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>Below is a sample JSON body. For additional details on the fields and their meanings <a href=\"http://help.logicbroker.com/hc/en-us/articles/211755046-Acknowledgment\">please see this article.</a>\nAlso, here is the link to our <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Acknowledgement/Acknowledgement_CreateAck\">API reference</a>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"ShipToAddress\": {\n    \"CompanyName\": \"{{ShipToAddress.CompanyName}}\",\n    \"FirstName\": \"{{ShipToAddress.FirstName}}\",\n    \"LastName\": \"{{ShipToAddress.LastName}}\",\n    \"Address1\": \"{{ShipToAddress.Address1}}\",\n    \"Address2\": \"{{ShipToAddress.Address2}}\",\n    \"City\": \"{{ShipToAddress.City}}\",\n    \"State\": \"{{ShipToAddress.State}}\",\n    \"Country\": \"{{ShipToAddress.Country}}\",\n    \"Zip\": \"{{ShipToAddress.Zip}}\",\n    \"AddressCode\": \"{{ShipToAddress.AddressCode}}\",\n    \"Phone\": \"{{ShipToAddress.Phone}}\",\n    \"Email\": \"{{ShipToAddress.Email}}\"\n  },\n  \"BillToAddress\": {\n    \"CompanyName\": \"{{BillToAddress.CompanyName}}\",\n    \"FirstName\": \"{{BillToAddress.FirstName}}\",\n    \"LastName\": \"{{BillToAddress.LastName}}\",\n    \"Address1\": \"{{BillToAddress.Address1}}\",\n    \"Address2\": \"{{BillToAddress.Address2}}\",\n    \"City\": \"{{BillToAddress.City}}\",\n    \"State\": \"{{BillToAddress.State}}\",\n    \"Country\": \"{{BillToAddress.Country}}\",\n    \"Zip\": \"{{BillToAddress.Zip}}\",\n    \"AddressCode\": \"{{BillToAddress.AddressCode}}\",\n    \"Phone\": \"{{BillToAddress.Phone}}\",\n    \"Email\": \"{{BillToAddress.Email}}\"\n  },\n  \"Identifier\": {\n    \"Linkkey\": \"{{Identifier.Linkkey}}\"\n  },\n  \"Type\": 0,\n  \"AcknowledgementNumber\": \"{{AcknowledgementNumber}}\",\n  \"OrderNumber\": \"{{OrderNumber}}\",\n  \"PartnerPO\": \"{{PartnerPO}}\",\n  \"VendorNumber\": \"{{VendorNumber}}\",\n  \"ChangeReason\": \"No change was made.\",\n  \"ScheduledShipDate\": \"{{ScheduledShipDate}}\",\n  \"AckLines\": [\n    {\n      \"ItemIdentifier\": {\n        \"SupplierSKU\": \"{{AckLines.ItemIdentifier.SupplierSKU}}\",\n        \"PartnerSKU\": \"{{AckLines.ItemIdentifier.PartnerSKU}}\",\n        \"UPC\": \"{{AckLines.ItemIdentifier.UPC}}\"\n      },\n      \"Type\": 1,\n      \"Quantity\": {{AckLines.Quantity}},\n      \"QuantityCancelled\": 0,\n      \"QuantityBackordered\": 0,\n      \"Price\": {{AckLines.Price}},\n      \"PriceCode\": \"{{AckLines.PriceCode}}\",\n      \"RetailPrice\": {{AckLines.RetailPrice}},\n      \"QuantityUOM\": \"{{AckLines.QuantityUOM}}\",\n      \"ChangeReason\": \"No change made\",\n      \"LineNumber\": \"1\",\n      \"ExtendedAttributes\": [\n        {\n          \"Name\": \"Color\",\n          \"Value\": \"{{AckLines.Color}}\"\n        },\n        {\n          \"Name\": \"Size\",\n          \"Value\": \"{{AckLines.Size}}\"\n        }\n      ]\n    }\n  ]\n}\n</code></pre><h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection, the Acknowledgement will get created off of the Order, accepting all line items and stored as a global variable. If you look at the body you will see that the variable <code>{{AckDetail}}</code> is entered.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Acknowledgements"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"16583b5e-d2a7-440b-a85b-e3773b38e6eb","name":"AcknowledgementResponse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{{AckDetail}}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Acknowledgements?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Acknowledgements"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Length","key":"Content-Length","value":"68","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Fri, 30 Sep 2016 18:27:15 GMT","description":""},{"name":"Location","key":"Location","value":"https://stage.commerceapi.io/api/v1/Acknowledgements/48949","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"201\",\"Message\":\"Created\",\"Body\":{\"LogicbrokerKey\":\"48949\"}}"}],"_postman_id":"04aba77d-d7b8-4501-bbee-2015016aacde"},{"name":"Step 5: Post a Shipment","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","postman.setGlobalVariable(\"ShipmentLogicbrokerKey\", jsonData.Body.LogicbrokerKey);"]}}],"id":"53b2433f-f53b-41e0-8520-e53451578129","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{{ShipDetail}}"},"url":"https://stage.commerceapi.io/api/v1/Shipments?subscription-key={{subscription-key}}","description":"<p>Shipments are used to mark orders as shipped. They provide details in terms of the contents of a shipment. They can include tracking information, container barcode, bill of lading, and appropriate weights and dimensions.<br /><br />\nShipments are required to follow a standard structure, the levels are listed below.\n<br />\n<br />\n<strong>1. Header</strong>\n<br />\n<br />\nEverything in the header level includes everything except <strong>ShipmentInfos</strong> and <strong>ShipmentLines</strong>. Here is an example of Header Data:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"ShipFromAddress\": {},\n  \"ExpectedDeliveryDate\": \"2015-11-13T18:34:52.411Z\",\n  \"BillofLading\": \"BOL1234\",\n  \"PRONumber\": \"PRO1234\",\n  \"ShipmentNumber\": \"SH1234\",\n  \"ShipmentLines\": {},\n  \"Identifier\": {},\n  \"OrderNumber\": \"1234\",\n  \"VendorNumber\": \"12345\",\n  \"PartnerPO\": \"PO1234\",\n  \"OrderDate\": \"2015-11-13T18:34:52.411Z\",\n  \"Payments\": {},\n  \"PaymentTerm\": {},\n  \"ShipmentInfos\": {},\n  \"ShipToAddress\": {},\n  \"BillToAddress\": {},\n  \"OrderedByAddress\": {},\n  \"ExtendedAttributes\": {},\n  \"TotalAmount\": 0.0,\n  \"StatusCode\": 0,\n  \"HandlingAmount\": 0.0,\n  \"Note\": \"Thank you for shopping at ONLINE!\"\n}\n</code></pre><br />\n<br />\n**2. Tare/Pallet (optional)**\n<br />\n<br />\nIf you are shipping a pallet, you will need to add the **ShipmentInfos** group in the header level. **ContainerCode** will be needed for each pallet. In addition, you will need to specify what **Pack** level containers are on the pallet. To do this you will need to add the **ShipmentContainerParentCode** on the **Pack** level; this will need to match the **ContainerCode** in the **ShipmentInfos** on the header level. Here is an example of a Tare/Pallet level **ShipmentInfos**:\n```\n{\n  \"ShipmentInfos\": [\n    {\n      \"DateShipped\": \"0001-01-01T00:00:00\",\n      \"TrackingNumber\": \"TRK11111\",\n      \"ContainerCode\": \"00086275400000051600\",\n      \"ContainerType\": \"PLT\",\n      \"Height\": 0.0,\n      \"Width\": 0.0,\n      \"Length\": 0.0,\n      \"DimensionUnit\": \"IN\",\n      \"Weight\": 0.0,\n      \"WeightUnit\": \"LB\"\n    }\n}\n```\n<br />\n<br />\n\n<p><strong>3. Item</strong>\n<br />\n<br />\nItem level will be everything under the <strong>ShipmentLines</strong> property. Here is an example of item level data:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"ShipmentLines\": [\n    {\n      \"ItemIdentifier\": {\n        \"SupplierSKU\": \"V-123123\",\n        \"PartnerSKU\": \"1234567\",\n        \"ManufacturerSKU\": \"0025252\",\n        \"UPC\": \"0123456789012\",\n        \"ISBN\": \"string\"\n      },\n      \"Price\": 2.0,\n      \"RetailPrice\": 0.0,\n      \"Cost\": 0.0,\n      \"MSRP\": 0.0,\n      \"Description\": \"Glass Bottle\",\n      \"Discounts\": [],\n      \"ShipmentInfos\": [],\n      \"Taxes\": [],\n      \"Quantity\": 90,\n      \"QuantityUOM\": \"EA\",\n      \"LineNumber\": \"1\",\n      \"Weight\": 0.0,\n      \"ExtendedAttributes\": []\n    }\n  ]\n}\n</code></pre><br />\n<br />\n\n\n<p><strong>4. Pack</strong>\n<br />\n<br /></p>\n<p>Pack level is identified in the <strong>ShipmentInfos</strong> underneath the <strong>Item Level</strong> (ShipmentLines). At least one container is required per line item. Each container specifies, the dimensions and the quantity of items shipped in that package. It is required to supply either a <strong>TrackingNumber</strong> or <strong>ContainerCode</strong> for the container. Here is an example of the pack level: </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"ShipmentLines\": [\n    {\n      \"ShipmentInfos\": [\n        {\n          \"DateShipped\": \"0001-01-01T12:00:00\",\n          \"CarrierCode\": \"FEDG1\",\n          \"ClassCode\": \"FDEG_GD\",\n          \"ServiceLevelCode\": \"string\",\n          \"TrackingNumber\": \"TRK11111\",\n          \"ContainerCode\": \"00086275400000051600\",\n          \"Qty\": 15,\n          \"ContainerType\": \"CTN\",\n          \"ShipmentContainerParentCode\": \"00086275400000051594\",\n          \"Height\": 0.0,\n          \"Width\": 0.0,\n          \"Length\": 0.0,\n          \"DimensionUnit\": \"IN\",\n          \"Weight\": 0.0,\n          \"WeightUnit\": \"LB\"\n        }\n      ],\n    }\n  ]\n}\n</code></pre><br />\n<br />\nOnce a **Shipment** is created and successfully sent to the retailer, the order status will get updated to **600 (Ready to Invoice)**. In addition, the status for the shipment will go to **1000 (Complete)** when it is successfully processed. For more details on all of the standard Shipment statuses, [see this article.](http://help.logicbroker.com/hc/en-us/articles/209415666-Shipment-Standard-Statuses)\n<br />\n<br />\n### Recommended Parameters\nBelow is a sample JSON body. For additional details on the fields and their meanings [please see this article.](http://help.logicbroker.com/hc/en-us/articles/213276723-Shipment)\nAlso, here is the link to our [API reference](https://stage.commerceapi.io/swagger/ui/index#!/Shipment/Shipment_CreateShipment).\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"ShipFromAddress\": {\n    \"CompanyName\": \"Warehouse 123\",\n    \"FirstName\": \"WGuy\",\n    \"LastName\": \"House\",\n    \"Address1\": \"123 Warehouse St\",\n    \"Address2\": \"Building A\",\n    \"City\": \"Shelton\",\n    \"State\": \"CT\",\n    \"Country\": \"US\",\n    \"Zip\": \"06484\",\n    \"AddressCode\": \"333\",\n    \"Phone\": \"123-123-1234\",\n    \"ContactType\": 0,\n    \"Email\": \"WH@Warehouse.com\"\n  },\n  \"ExpectedDeliveryDate\": \"2015-11-13T18:34:52.411Z\",\n  \"BillofLading\": \"BOL1234\",\n  \"PRONumber\": \"PRO1234\",\n  \"ShipmentNumber\": \"SH1234\",\n  \"ShipmentLines\": [\n    {\n      \"ItemIdentifier\": {\n        \"SupplierSKU\": \"V-123123\",\n        \"PartnerSKU\": \"1234567\",\n        \"ManufacturerSKU\": \"0025252\",\n        \"UPC\": \"0123456789012\",\n        \"ISBN\": \"string\"\n      },\n      \"Price\": 2.0,\n      \"RetailPrice\": 0.0,\n      \"Cost\": 0.0,\n      \"MSRP\": 0.0,\n      \"Description\": \"Glass Bottle\",\n      \"Discounts\": [],\n      \"ShipmentInfos\": [\n        {\n          \"DateShipped\": \"0001-01-01T12:00:00\",\n          \"CarrierCode\": \"FEDG1\",\n          \"ClassCode\": \"FDEG_GD\",\n          \"ServiceLevelCode\": \"string\",\n          \"TrackingNumber\": \"TRK11111\",\n          \"ContainerCode\": \"00086275400000051600\",\n          \"Qty\": 15,\n          \"ContainerType\": \"CTN\",\n          \"ShipmentContainerParentCode\": \"00086275400000051594\",\n          \"Height\": 0.0,\n          \"Width\": 0.0,\n          \"Length\": 0.0,\n          \"DimensionUnit\": \"IN\",\n          \"Weight\": 0.0,\n          \"WeightUnit\": \"LB\"\n        }\n      ],\n      \"Taxes\": [],\n      \"Quantity\": 90,\n      \"QuantityUOM\": \"EA\",\n      \"LineNumber\": \"1\",\n      \"Weight\": 0.0,\n      \"ExtendedAttributes\": [\n        {\n          \"Name\": \"Color\",\n          \"Value\": \"Blue\"\n        },\n        {\n          \"Name\": \"Size\",\n          \"Value\": \"Size 15\"\n        }\n      ]\n    }\n  ],\n  \"Identifier\": {\n    \"SourceKey\": \"SH1234\",\n    \"LogicbrokerKey\": \"\"\n  },\n  \"OrderNumber\": \"1234\",\n  \"VendorNumber\": \"12345\",\n  \"PartnerPO\": \"PO1234\",\n  \"OrderDate\": \"2015-11-13T18:34:52.411Z\",\n  \"Payments\": [\n    {\n      \"Method\": \"CC\",\n      \"PaymentDate\": \"0001-01-01T00:00:00\"\n    }\n  ],\n  \"PaymentTerm\": {\n    \"PayInNumberOfDays\": 0,\n    \"DiscountInNumberOfDays\": 0,\n    \"AvailableDiscount\": 0.0,\n    \"DueDate\": \"0001-01-01T00:00:00\",\n    \"DiscountDueDate\": \"0001-01-01T00:00:00\",\n    \"EffectiveDate\": \"0001-01-01T00:00:00\"\n  },\n  \"ShipmentInfos\": [\n    {\n      \"DateShipped\": \"0001-01-01T00:00:00\",\n      \"TrackingNumber\": \"TRK11111\",\n      \"ContainerCode\": \"00086275400000051600\",\n      \"ContainerType\": \"PLT\",\n      \"Height\": 0.0,\n      \"Width\": 0.0,\n      \"Length\": 0.0,\n      \"DimensionUnit\": \"IN\",\n      \"Weight\": 0.0,\n      \"WeightUnit\": \"LB\"\n    }\n  ],\n  \"ShipToAddress\": {\n    \"CompanyName\": \"Warehouse 123\",\n    \"FirstName\": \"WGuy\",\n    \"LastName\": \"House\",\n    \"Address1\": \"123 Warehouse St\",\n    \"Address2\": \"Building A\",\n    \"City\": \"Shelton\",\n    \"State\": \"CT\",\n    \"Country\": \"US\",\n    \"Zip\": \"06484\",\n    \"AddressCode\": \"333\",\n    \"Phone\": \"123-123-1234\",\n    \"ContactType\": 0,\n    \"Email\": \"WH@Warehouse.com\"\n  },\n  \"BillToAddress\": {\n    \"CompanyName\": \"Warehouse 123\",\n    \"FirstName\": \"WGuy\",\n    \"LastName\": \"House\",\n    \"Title\": \"\",\n    \"Address1\": \"123 Warehouse St\",\n    \"Address2\": \"Building A\",\n    \"City\": \"Shelton\",\n    \"State\": \"CT\",\n    \"Country\": \"US\",\n    \"Zip\": \"06484\",\n    \"Province\": \"\",\n    \"AddressCode\": \"333\",\n    \"StateCode\": \"\",\n    \"Phone\": \"123-123-1234\",\n    \"ContactID\": \"\",\n    \"ContactType\": 0,\n    \"Email\": \"WH@Warehouse.com\",\n    \"TaxNumber\": \"\",\n    \"Note\": \"\"\n  },\n  \"OrderedByAddress\": {\n    \"CompanyName\": \"Warehouse 123\",\n    \"FirstName\": \"WGuy\",\n    \"LastName\": \"House\",\n    \"Address1\": \"123 Warehouse St\",\n    \"Address2\": \"Building A\",\n    \"City\": \"Shelton\",\n    \"State\": \"CT\",\n    \"Country\": \"US\",\n    \"Zip\": \"06484\",\n    \"AddressCode\": \"333\",\n    \"Phone\": \"123-123-1234\",\n    \"ContactType\": 0,\n    \"Email\": \"WH@Warehouse.com\"\n  },\n  \"ExtendedAttributes\": [\n    {\n      \"Name\": \"EXAMPLE\",\n      \"Value\": \"Portal\"\n    }\n  ],\n  \"TotalAmount\": 0.0,\n  \"StatusCode\": 0,\n  \"HandlingAmount\": 0.0,\n  \"Note\": \"Thank you for shopping at ONLINE!\"\n}\n</code></pre><h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection, the Shipment will get created off of the Order, shipping all line items stored as a global variable. Each order line item will have one unique pack/container. \nIf you look at the body you will see that the variable <code>{{ShipDetail}}</code> is entered.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Shipments"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"bfcd73c7-0807-4aa9-bd26-5843e092a577","name":"SampleShipmentResponse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{{ShipDetail}}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Shipments?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Shipments"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Length","key":"Content-Length","value":"68","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Fri, 30 Sep 2016 19:19:36 GMT","description":""},{"name":"Location","key":"Location","value":"https://stage.commerceapi.io/api/v1/Shipments/48951","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"201\",\"Message\":\"Created\",\"Body\":{\"LogicbrokerKey\":\"48951\"}}"}],"_postman_id":"53b2433f-f53b-41e0-8520-e53451578129"},{"name":"Step 6: Get Packing Slip on Shipment (Optional)","id":"4be4b111-f327-4fcd-b13b-7545efab5258","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v1/Shipments/:LogicbrokerKey/PackingSlip?fileType=pdf&subscription-key={{subscription-key}}","description":"<p>This step will be used if your retailer requires a branded packing slip. In the response logicbroker will provide a link to download the document in one of the specified formats. The step is listed as <strong>optional</strong> because it is unnecessary if you will be creating packing slips in your own internal system. \n<br />\n<br />\nIn addition, this packing slip will get generated based on all shipped items per container. The <strong>LogicbrokerKey</strong> will be the parameter for the shipment document. \n<br />\n<br />\nLast, if you need to get packing slips for multiple shipments per response you can enter multiple <strong>LogicbrokerKeys</strong> seperated by comma.\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Shipment/Shipment_GetShipmentPackingSlip\">API reference</a>. </p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>Filters.LogicbrokerKey</b><br /></td><td>The unique identifier for the document. Will be used to specify which shipment's packing slip(s) to get. </td><td>string</td></tr><tr><td><b>FileType</b><br /></td><td>This will specify what format you would like to download the Packing Slip. <b>Valid types</b>: jpg, png, pdf, ps, zpl</td><td>string</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>Within the collection, the <strong>LogicBrokerKey</strong> from step 6 (Post a Shipment) will be used and <strong>pdf</strong> will be the defaulted <strong>FileType</strong> parameter. </p>\n","urlObject":{"protocol":"https","path":["api","v1","Shipments",":LogicbrokerKey","PackingSlip"],"host":["stage","commerceapi","io"],"query":[{"key":"fileType","value":"pdf"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"LogicbrokerKey","type":"any","value":"{{ShipmentLogicbrokerKey}}","key":"LogicbrokerKey"},{"type":"any","value":"{"},{"type":"any","value":"{","key":1},{"type":"any","value":"S","key":2},{"type":"any","value":"h","key":3},{"type":"any","value":"i","key":4},{"type":"any","value":"p","key":5},{"type":"any","value":"m","key":6},{"type":"any","value":"e","key":7},{"type":"any","value":"n","key":8},{"type":"any","value":"t","key":9},{"type":"any","value":"L","key":10},{"type":"any","value":"o","key":11},{"type":"any","value":"g","key":12},{"type":"any","value":"i","key":13},{"type":"any","value":"c","key":14},{"type":"any","value":"b","key":15},{"type":"any","value":"r","key":16},{"type":"any","value":"o","key":17},{"type":"any","value":"k","key":18},{"type":"any","value":"e","key":19},{"type":"any","value":"r","key":20},{"type":"any","value":"K","key":21},{"type":"any","value":"e","key":22},{"type":"any","value":"y","key":23},{"type":"any","value":"}","key":24},{"type":"any","value":"}","key":25}]}},"response":[{"id":"fb573609-bd93-44ba-852e-b4a49db8064f","name":"shipmentpackingslip","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/Shipments/:LogicbrokerKey/PackingSlip?fileType=pdf&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Shipments",":LogicbrokerKey","PackingSlip"],"query":[{"key":"fileType","value":"pdf"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"LogicbrokerKey"}]}},"status":"OK","code":200,"_postman_previewlanguage":"javascript","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 03 Oct 2016 15:59:51 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"75","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"https://stage.commerceapi.io/api/v1/Shipments/48952/PackingSlip?imagetoken=f585eab7-fa1a-4245-a921-d7bb21ebf763\"}"}],"_postman_id":"4be4b111-f327-4fcd-b13b-7545efab5258"},{"name":"Step 7: Get Shipping Labels (Optional)","id":"5893414e-4ae1-46ed-b47a-b382a1cada7e","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v1/Shipments/:LogicbrokerKey/ShippingLabel?fileType=pdf&subscription-key={{subscription-key}}","description":"<p>This step will be used if your retailer requires GS1-128 (UCC-128) shipping labels on each container or pallet. In the response logicbroker will provide a link to download the document in one of the specified formats. The step is listed as <strong>optional</strong> because it is unnecessary if you will be creating the shipping labels in your own internal system. \n<br />\n<br />\nIn addition, the shipping label will get created 1 per every container an pallet.\n<br />\n<br />\nLast, if you need to get labels for multiple shipments per response you can enter multiple <strong>LogicbrokerKey</strong> parameters seperated by comma.\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Shipment/Shipment_GetShipmentShippingLabelToken\">API reference</a>. </p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>Filters.LogicbrokerKey</b><br /></td><td>The unique identifier for the document. Will be used to specify which shipment's packing slip(s) to get. </td><td>string</td></tr><tr><td><b>FileType</b><br /></td><td>This will specify what format you would like to download the Packing Slip. <b>Valid types</b>: jpg, png, pdf, ps, zpl</td><td>string</td></tr><tr><td><b>containerCode</b></td><td>Used to print 1 label for a specific container.</td><td>string</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>Within the collection, the <strong>LogicBrokerKey</strong> from step 6 (Post a Shipment) will be used and <strong>pdf</strong> will be the defaulted <strong>FileType</strong> parameter. </p>\n","urlObject":{"protocol":"https","path":["api","v1","Shipments",":LogicbrokerKey","ShippingLabel"],"host":["stage","commerceapi","io"],"query":[{"key":"fileType","value":"pdf"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"LogicbrokerKey","type":"any","value":"{{ShipmentLogicbrokerKey}}","key":"LogicbrokerKey"},{"type":"any","value":"{"},{"type":"any","value":"{","key":1},{"type":"any","value":"S","key":2},{"type":"any","value":"h","key":3},{"type":"any","value":"i","key":4},{"type":"any","value":"p","key":5},{"type":"any","value":"m","key":6},{"type":"any","value":"e","key":7},{"type":"any","value":"n","key":8},{"type":"any","value":"t","key":9},{"type":"any","value":"L","key":10},{"type":"any","value":"o","key":11},{"type":"any","value":"g","key":12},{"type":"any","value":"i","key":13},{"type":"any","value":"c","key":14},{"type":"any","value":"b","key":15},{"type":"any","value":"r","key":16},{"type":"any","value":"o","key":17},{"type":"any","value":"k","key":18},{"type":"any","value":"e","key":19},{"type":"any","value":"r","key":20},{"type":"any","value":"K","key":21},{"type":"any","value":"e","key":22},{"type":"any","value":"y","key":23},{"type":"any","value":"}","key":24},{"type":"any","value":"}","key":25}]}},"response":[{"id":"92cb6546-258c-4f8a-aea3-b4aab58cbaf2","name":"shippinglabel","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/Shipments/:LogicbrokerKey/ShippingLabel?fileType=pdf&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Shipments",":LogicbrokerKey","ShippingLabel"],"query":[{"key":"fileType","value":"pdf"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"LogicbrokerKey"}]}},"status":"OK","code":200,"_postman_previewlanguage":"javascript","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 03 Oct 2016 16:00:00 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"https://stage.commerceapi.io/api/v1/Shipments/48952/ShippingLabel?imagetoken=a9ab9013-8f98-4d46-a9a4-4f57f66850a7\"}"}],"_postman_id":"5893414e-4ae1-46ed-b47a-b382a1cada7e"},{"name":"Step 8: Post a Invoice","id":"fbcdc1fe-4b65-4587-b89b-86accad36bf6","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{{InvoiceDetail}}"},"url":"https://stage.commerceapi.io/api/v1/Invoices?subscription-key={{subscription-key}}","description":"<p>Invoices will be used to bill the retailer for items fulfilled.\n<br />\n<br />\nIf you your SLA with the retailer and pricing will always remain the same, logicbroker can create invoices automatically from the shipment. This will ensure invoices are generated as soon as an ASN is sent.\n<br />\n<br />\nOnce an <strong>Invoce</strong> is created, all items have been shipped and the document is successfully sent to the retailer, the order status will get updated to <strong>1000 (Complete)</strong>. In addition, the status for the invoice will go to <strong>1000 (Complete)</strong> when it is successfully processed. For more details on all of the standard Invoice statuses, <a href=\"http://help.logicbroker.com/hc/en-us/articles/209415706-Invoice-Standard-Statuses\">see this article.</a>\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>Below is a sample JSON body. For additional details on the fields and their meanings <a href=\"http://help.logicbroker.com/hc/en-us/articles/213276783-Invoice\">please see this article.</a>\nAlso, here is the link to our <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Invoice/Invoice_CreateInvoice\">API reference</a>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"RemitToAddress\": {\n    \"CompanyName\": \"RIJENNIFER LEWIS\",\n    \"FirstName\": \"RemitFName\",\n    \"LastName\": \"RemitLName\",\n    \"Address1\": \"RI22 CORPORATE DR\",\n    \"Address2\": \"RISUITE 206\",\n    \"City\": \"RIClifton\",\n    \"State\": \"RINJ\",\n    \"Country\": \"RIUSA\",\n    \"Zip\": \"RI12065\",\n    \"AddressCode\": \"RI1223456789\",\n    \"Phone\": \"RI123123123\",\n    \"ContactType\": 0,\n    \"Email\": \"RIDS@Remit.com\"\n  },\n  \"ShipFromAddress\": {\n    \"ContactType\": 0\n  },\n  \"InvoiceLines\": [\n    {\n      \"ItemIdentifier\": {\n        \"SupplierSKU\": \"V-123123\",\n        \"PartnerSKU\": \"1234567\",\n        \"ManufacturerSKU\": \"0123456789012\",\n        \"UPC\": \"0123456789012\",\n        \"ISBN\": \"ISBN5555\"\n      },\n      \"Price\": 90.0,\n      \"PriceCode\": \"WH\",\n      \"RetailPrice\": 0.0,\n      \"Cost\": 0.0,\n      \"MSRP\": 28.0,\n      \"Description\": \"Spoons\",\n      \"Discounts\": [],\n      \"ShipmentInfos\": [],\n      \"Taxes\": [\n        {\n          \"TaxAmount\": 3.20,\n          \"TaxRate\": 0.0\n        }\n      ],\n      \"Quantity\": 14,\n      \"QuantityUOM\": \"EA\",\n      \"LineNumber\": \"1\",\n      \"Weight\": 0.0,\n      \"ExtendedAttributes\": [\n        {\n          \"Name\": \"Color\",\n          \"Value\": \"Blue\"\n        },\n        {\n          \"Name\": \"Size\",\n          \"Value\": \"Size 15\"\n        }\n      ]\n    }\n  ],\n  \"InvoiceNumber\": \"INV100012345\",\n  \"InvoiceDate\": \"2015-11-05T16:23:30.978Z\",\n  \"InvoiceTotal\": 5.0,\n  \"Identifier\": {\n    \"SourceKey\": \"INV100012345\",\n    \"LogicbrokerKey\": \"\"\n  },\n  \"OrderNumber\": \"ORD123456\",\n  \"VendorNumber\": \"12345\",\n  \"PartnerPO\": \"PO1000100123456\",\n  \"OrderDate\": \"2015-11-05T16:23:30.978Z\",\n  \"Discounts\": [\n    {\n      \"DiscountPercent\": 2.0,\n      \"DiscountAmount\": 8.0\n    }\n  ],\n  \"Taxes\": [\n    {\n      \"TaxAmount\": 10.0\n    }\n  ],\n  \"PaymentTerm\": {\n    \"TermsDescription\": \"N60\",\n    \"PayInNumberOfDays\": 60,\n    \"DiscountInNumberOfDays\": 30,\n    \"AvailableDiscount\": 0.0,\n    \"DueDate\": \"2016-01-14T00:00:00\",\n    \"DiscountDueDate\": \"2016-01-14T00:00:00\",\n    \"EffectiveDate\": \"2016-01-14T12:00:00\"\n  },\n  \"ShipToAddress\": {\n    \"CompanyName\": \"STJENNIFER LEWIS\",\n    \"FirstName\": \"STFName\",\n    \"LastName\": \"STLName\",\n    \"Address1\": \"ST22 CORPORATE DR\",\n    \"Address2\": \"STSUITE 206\",\n    \"City\": \"STClifton\",\n    \"State\": \"STNJ\",\n    \"Country\": \"STUSA\",\n    \"Zip\": \"ST12065\",\n    \"AddressCode\": \"ST1223456789\",\n    \"Phone\": \"ST123123123\",\n    \"ContactType\": 0,\n    \"Email\": \"STDS@Remit.com\"\n  },\n  \"BillToAddress\": {\n    \"CompanyName\": \"BT JENNIFER LEWIS\",\n    \"FirstName\": \"BTFName\",\n    \"LastName\": \"BTLName\",\n    \"Title\": \"\",\n    \"Address1\": \"BT 22 CORPORATE DR\",\n    \"Address2\": \"BT SUITE 206\",\n    \"City\": \"BT Clifton\",\n    \"State\": \"BT NJ\",\n    \"Country\": \"BT USA\",\n    \"Zip\": \"BT 12065\",\n    \"Province\": \"\",\n    \"AddressCode\": \"BT1223456789\",\n    \"StateCode\": \"\",\n    \"Phone\": \"BT 123123123\",\n    \"ContactID\": \"\",\n    \"ContactType\": 0,\n    \"Email\": \"BT DS@Remit.com\",\n    \"TaxNumber\": \"\",\n    \"Note\": \"\"\n  },\n  \"OrderedByAddress\": {\n    \"CompanyName\": \"BT JENNIFER LEWIS\",\n    \"FirstName\": \"BTFName\",\n    \"LastName\": \"BTLName\",\n    \"Address1\": \"BT 22 CORPORATE DR\",\n    \"Address2\": \"BT SUITE 206\",\n    \"City\": \"BT Clifton\",\n    \"State\": \"BT NJ\",\n    \"Country\": \"BT USA\",\n    \"Zip\": \"BT 12065\",\n    \"AddressCode\": \"BT1223456789\",\n    \"Phone\": \"BT 123123123\",\n    \"ContactType\": 0,\n    \"Email\": \"BT DS@Remit.com\"\n  },\n  \"ExtendedAttributes\": [\n    {\n      \"Name\": \"InvoiceTypeCode\",\n      \"Value\": \"DR\"\n    },\n    {\n      \"Name\": \"Allowance - ZZZZ\",\n      \"Value\": \"11.90\"\n    },\n    {\n      \"Name\": \"Charge - ZZZZ\",\n      \"Value\": \"20.90\"\n    }\n  ],\n  \"TotalAmount\": 0.0,\n  \"Currency\": \"USD\",\n  \"StatusCode\": 0,\n  \"HandlingAmount\": 4.0,\n  \"Note\": \"Thank you for shopping at ONLINE!\"\n}\n</code></pre><h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection, the Invoice will get created off of the Order, invoicing all line items and stored as a global variable. If you look at the body you will see that the variable <code>{{InvoiceDetail}}</code> is entered.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Invoices"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"f99c2ac9-3d37-4e9a-8750-7d2d3db3c82f","name":"createinvoice","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{{InvoiceDetail}}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Invoices?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Invoices"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Length","key":"Content-Length","value":"84","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 03 Oct 2016 16:00:45 GMT","description":""},{"name":"Location","key":"Location","value":"https://stage.commerceapi.io/api/v1/Invoices/48978","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"Created\",\"Message\":\"New Invoice created\",\"Body\":{\"LogicbrokerKey\":\"48978\"}}"}],"_postman_id":"fbcdc1fe-4b65-4587-b89b-86accad36bf6"}],"id":"40a508f6-80f9-41bd-a091-1dcc1bfedc32","description":"<h1 id=\"overview\">Overview</h1>\n<p>If you are a supplier receiving orders from retailers and popular brands this is the recommended flow for you. Doing a one time integration following this process will enable you to connect your systems with the entire logicbroker brand/retailer network.</p>\n<p></p>\nThe diagram below is a brief overview of the recommended supplier flow.\n<p></p>\n<p>\n\n</p><p><img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Supplier-Flow-Redone.png\" /><br /></p><p></p>\n<h1 id=\"before-you-start---setup-your-trading-partners\">Before you Start - Setup your Trading Partners</h1>\n<p>To begin testing with your trading partners (retailers), you need to set them up as retailers in Logicbroker production portal. You can select from an existing one or provide a new one through an account manager or support.</p>\n<p>Once these trading partners are setup and approved/paid they will get propagated to Logicbroker test environment and configured for both testing and live documents exchange.</p>\n<p>Here you will grab the Company ID this will be used for your ReceiverCompanyId parameter when receiving documents (Orders) and SenderCompanyId when sending documents (Acknowledgments, Shipments, and Invoices).</p>\n<p><img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Supplier-Get-Retailer-CoID.png\" /><br />\n<br /></p>\n","_postman_id":"40a508f6-80f9-41bd-a091-1dcc1bfedc32"},{"name":"3a. Other Shipping Label Flows","item":[{"name":"Step 1: Gets a New SSCC-18 Container Code (Optional)","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);\r","    \r","postman.setGlobalVariable(\"SSCCCode\", jsonData.Body);"]}}],"id":"42d30c4b-829c-4f1b-99d1-c1280c7c6ee0","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v1/Shipments/ContainerCode?containerType=box&subscription-key={{subscription-key}}","description":"<p>In this step you will use logicbroker to create an SSCC-18 formatted code. In logicbroker, as long as you have a GS1 company pre-fix and current serial set, you will be able to generate this code through this endpoint. This code is designed to identify the company, ensure that duplicate container codes are not used, and the code is formatted properly for barcode scanners. For more details on SSCC-18 codes, <a href=\"http://www.gs1.org/serial-shipping-container-code-sscc\">please see the GS1 website here</a>. \n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Shipment/Shipment_GetContainerCode\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>containerType</b><br /></td><td>Valid types include Box and Pallet.</td><td>string</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the test <strong>box</strong> will be defaulted for the <strong>containerType</strong>. Once the call is sent, the code will be saved as a global variable <strong>{{SSCCCode}}</strong>. This will be used in the next step to get the label.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Shipments","ContainerCode"],"host":["stage","commerceapi","io"],"query":[{"key":"containerType","value":"box"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"370b30cb-de82-4856-b016-edcb347c58ec","name":"SSCCResponse","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/Shipments/ContainerCode?containerType=box&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Shipments","ContainerCode"],"query":[{"key":"containerType","value":"box"},{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Tue, 22 Nov 2016 16:57:46 GMT","description":"The date and time that the message was sent"},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"100","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"081034001000020742\"}"}],"_postman_id":"42d30c4b-829c-4f1b-99d1-c1280c7c6ee0"},{"name":"Step 2: Get Shipping Labels Before Submitting Shipment","id":"183b14ff-5a30-4b4c-afde-dd432b9f904a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"ShipFromAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"AddressCode\": \"333\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\"\r\n  },\r\n  \"ExpectedDeliveryDate\": \"2015-11-13T18:34:52.411Z\",\r\n  \"BillofLading\": \"BOL1234\",\r\n  \"PRONumber\": \"PRO1234\",\r\n  \"ShipmentNumber\": \"SH1234\",\r\n  \"ShipmentLines\": [\r\n    {\r\n      \"ItemIdentifier\": {\r\n        \"SupplierSKU\": \"V-123123\",\r\n        \"PartnerSKU\": \"1234567\",\r\n        \"ManufacturerSKU\": \"0025252\",\r\n        \"UPC\": \"0123456789012\",\r\n        \"ISBN\": \"string\"\r\n      },\r\n      \"Price\": 2.0,\r\n      \"RetailPrice\": 0.0,\r\n      \"Cost\": 0.0,\r\n      \"MSRP\": 0.0,\r\n      \"Description\": \"Glass Bottle\",\r\n      \"Discounts\": [],\r\n      \"ShipmentInfos\": [\r\n        {\r\n          \"DateShipped\": \"0001-01-01T12:00:00\",\r\n          \"CarrierCode\": \"FEDG1\",\r\n          \"ClassCode\": \"FDEG_GD\",\r\n          \"ServiceLevelCode\": \"string\",\r\n          \"TrackingNumber\": \"TRK11111\",\r\n          \"ContainerCode\": \"{{SSCCCode}}\",\r\n          \"Qty\": 15,\r\n          \"ContainerType\": \"CTN\",\r\n          \"Height\": 0.0,\r\n          \"Width\": 0.0,\r\n          \"Length\": 0.0,\r\n          \"DimensionUnit\": \"IN\",\r\n          \"Weight\": 0.0,\r\n          \"WeightUnit\": \"LB\"\r\n        }\r\n      ],\r\n      \"Taxes\": [],\r\n      \"Quantity\": 90,\r\n      \"QuantityUOM\": \"EA\",\r\n      \"LineNumber\": \"1\",\r\n      \"Weight\": 0.0,\r\n      \"ExtendedAttributes\": [\r\n        {\r\n          \"Name\": \"Color\",\r\n          \"Value\": \"Blue\"\r\n        },\r\n        {\r\n          \"Name\": \"Size\",\r\n          \"Value\": \"Size 15\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"Identifier\": {\r\n  },\r\n  \"OrderNumber\": \"1234\",\r\n  \"VendorNumber\": \"12345\",\r\n  \"PartnerPO\": \"PO1234\",\r\n  \"OrderDate\": \"2015-11-13T18:34:52.411Z\",\r\n  \"Payments\": [\r\n    {\r\n      \"Method\": \"CC\",\r\n      \"PaymentDate\": \"0001-01-01T00:00:00\"\r\n    }\r\n  ],\r\n  \"PaymentTerm\": {\r\n    \"PayInNumberOfDays\": 0,\r\n    \"DiscountInNumberOfDays\": 0,\r\n    \"AvailableDiscount\": 0.0,\r\n    \"DueDate\": \"0001-01-01T00:00:00\",\r\n    \"DiscountDueDate\": \"0001-01-01T00:00:00\",\r\n    \"EffectiveDate\": \"0001-01-01T00:00:00\"\r\n  },\r\n  \"ShipmentInfos\": [\r\n  ],\r\n  \"ShipToAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"AddressCode\": \"333\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\"\r\n  },\r\n  \"BillToAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Title\": \"\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"Province\": \"\",\r\n    \"AddressCode\": \"333\",\r\n    \"StateCode\": \"\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactID\": \"\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\",\r\n    \"TaxNumber\": \"\",\r\n    \"Note\": \"\"\r\n  },\r\n  \"OrderedByAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"AddressCode\": \"333\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\"\r\n  },\r\n  \"ExtendedAttributes\": [\r\n    {\r\n      \"Name\": \"EXAMPLE\",\r\n      \"Value\": \"Portal\"\r\n    }\r\n  ],\r\n  \"TotalAmount\": 0.0,\r\n  \"StatusCode\": 0,\r\n  \"HandlingAmount\": 0.0,\r\n  \"Note\": \"Thank you for shopping at ONLINE!\"\r\n}"},"url":"https://stage.commerceapi.io/api/v1/Shipments/ShippingLabel?fileType=pdf&subscription-key={{subscription-key}}","description":"<p>In this step, you will pass in normal shipment data as you would for a regular shipment, however it will not get posted to the logicbroker system and will only provide the link to download the labels associated with the shipment data.\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Shipment/Shipment_GetShipmentShippingLabelToken_0\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>fileType</b><br /></td><td><p>Valid types: jpg, png, pdf, ps, zpl</p></td><td>string</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In this test, the <strong>fileType</strong> will be defaulted to <strong>pdf</strong>. The body will be pre-filled with a sample shipment, using the container code retrieved from the previous step. </p>\n","urlObject":{"protocol":"https","path":["api","v1","Shipments","ShippingLabel"],"host":["stage","commerceapi","io"],"query":[{"key":"fileType","value":"pdf"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"1f9de848-3220-4b17-ac37-5e6d41f4cdd9","name":"GetLabel","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\r\n  \"ShipFromAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"AddressCode\": \"333\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\"\r\n  },\r\n  \"ExpectedDeliveryDate\": \"2015-11-13T18:34:52.411Z\",\r\n  \"BillofLading\": \"BOL1234\",\r\n  \"PRONumber\": \"PRO1234\",\r\n  \"ShipmentNumber\": \"SH1234\",\r\n  \"ShipmentLines\": [\r\n    {\r\n      \"ItemIdentifier\": {\r\n        \"SupplierSKU\": \"V-123123\",\r\n        \"PartnerSKU\": \"1234567\",\r\n        \"ManufacturerSKU\": \"0025252\",\r\n        \"UPC\": \"0123456789012\",\r\n        \"ISBN\": \"string\"\r\n      },\r\n      \"Price\": 2.0,\r\n      \"RetailPrice\": 0.0,\r\n      \"Cost\": 0.0,\r\n      \"MSRP\": 0.0,\r\n      \"Description\": \"Glass Bottle\",\r\n      \"Discounts\": [],\r\n      \"ShipmentInfos\": [\r\n        {\r\n          \"DateShipped\": \"0001-01-01T12:00:00\",\r\n          \"CarrierCode\": \"FEDG1\",\r\n          \"ClassCode\": \"FDEG_GD\",\r\n          \"ServiceLevelCode\": \"string\",\r\n          \"TrackingNumber\": \"TRK11111\",\r\n          \"ContainerCode\": \"{{SSCCCode}}\",\r\n          \"Qty\": 15,\r\n          \"ContainerType\": \"CTN\",\r\n          \"Height\": 0.0,\r\n          \"Width\": 0.0,\r\n          \"Length\": 0.0,\r\n          \"DimensionUnit\": \"IN\",\r\n          \"Weight\": 0.0,\r\n          \"WeightUnit\": \"LB\"\r\n        }\r\n      ],\r\n      \"Taxes\": [],\r\n      \"Quantity\": 90,\r\n      \"QuantityUOM\": \"EA\",\r\n      \"LineNumber\": \"1\",\r\n      \"Weight\": 0.0,\r\n      \"ExtendedAttributes\": [\r\n        {\r\n          \"Name\": \"Color\",\r\n          \"Value\": \"Blue\"\r\n        },\r\n        {\r\n          \"Name\": \"Size\",\r\n          \"Value\": \"Size 15\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"Identifier\": {\r\n  },\r\n  \"OrderNumber\": \"1234\",\r\n  \"VendorNumber\": \"12345\",\r\n  \"PartnerPO\": \"PO1234\",\r\n  \"OrderDate\": \"2015-11-13T18:34:52.411Z\",\r\n  \"Payments\": [\r\n    {\r\n      \"Method\": \"CC\",\r\n      \"PaymentDate\": \"0001-01-01T00:00:00\"\r\n    }\r\n  ],\r\n  \"PaymentTerm\": {\r\n    \"PayInNumberOfDays\": 0,\r\n    \"DiscountInNumberOfDays\": 0,\r\n    \"AvailableDiscount\": 0.0,\r\n    \"DueDate\": \"0001-01-01T00:00:00\",\r\n    \"DiscountDueDate\": \"0001-01-01T00:00:00\",\r\n    \"EffectiveDate\": \"0001-01-01T00:00:00\"\r\n  },\r\n  \"ShipmentInfos\": [\r\n  ],\r\n  \"ShipToAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"AddressCode\": \"333\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\"\r\n  },\r\n  \"BillToAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Title\": \"\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"Province\": \"\",\r\n    \"AddressCode\": \"333\",\r\n    \"StateCode\": \"\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactID\": \"\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\",\r\n    \"TaxNumber\": \"\",\r\n    \"Note\": \"\"\r\n  },\r\n  \"OrderedByAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"AddressCode\": \"333\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\"\r\n  },\r\n  \"ExtendedAttributes\": [\r\n    {\r\n      \"Name\": \"EXAMPLE\",\r\n      \"Value\": \"Portal\"\r\n    }\r\n  ],\r\n  \"TotalAmount\": 0.0,\r\n  \"StatusCode\": 0,\r\n  \"HandlingAmount\": 0.0,\r\n  \"Note\": \"Thank you for shopping at ONLINE!\"\r\n}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Shipments/ShippingLabel?fileType=pdf&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Shipments","ShippingLabel"],"query":[{"key":"fileType","value":"pdf"},{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Tue, 22 Nov 2016 17:15:29 GMT","description":"The date and time that the message was sent"},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"https://stage.commerceapi.io/api/v1/Shipments/ShippingLabel?imagetoken=d331876d-3b20-47a9-8d4e-a4b4beaedef9\"}"}],"_postman_id":"183b14ff-5a30-4b4c-afde-dd432b9f904a"},{"name":"Step 3: Post a Shipment","id":"8205a33b-a17d-4f81-94a3-3a5e1d349b8e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"ShipFromAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"AddressCode\": \"333\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\"\r\n  },\r\n  \"ExpectedDeliveryDate\": \"2015-11-13T18:34:52.411Z\",\r\n  \"BillofLading\": \"BOL1234\",\r\n  \"PRONumber\": \"PRO1234\",\r\n  \"ShipmentNumber\": \"SH1234\",\r\n  \"ShipmentLines\": [\r\n    {\r\n      \"ItemIdentifier\": {\r\n        \"SupplierSKU\": \"V-123123\",\r\n        \"PartnerSKU\": \"1234567\",\r\n        \"ManufacturerSKU\": \"0025252\",\r\n        \"UPC\": \"0123456789012\",\r\n        \"ISBN\": \"string\"\r\n      },\r\n      \"Price\": 2.0,\r\n      \"RetailPrice\": 0.0,\r\n      \"Cost\": 0.0,\r\n      \"MSRP\": 0.0,\r\n      \"Description\": \"Glass Bottle\",\r\n      \"Discounts\": [],\r\n      \"ShipmentInfos\": [\r\n        {\r\n          \"DateShipped\": \"0001-01-01T12:00:00\",\r\n          \"CarrierCode\": \"FEDG1\",\r\n          \"ClassCode\": \"FDEG_GD\",\r\n          \"ServiceLevelCode\": \"string\",\r\n          \"TrackingNumber\": \"TRK11111\",\r\n          \"ContainerCode\": \"{{SSCCCode}}\",\r\n          \"Qty\": 15,\r\n          \"ContainerType\": \"CTN\",\r\n          \"Height\": 0.0,\r\n          \"Width\": 0.0,\r\n          \"Length\": 0.0,\r\n          \"DimensionUnit\": \"IN\",\r\n          \"Weight\": 0.0,\r\n          \"WeightUnit\": \"LB\"\r\n        }\r\n      ],\r\n      \"Taxes\": [],\r\n      \"Quantity\": 90,\r\n      \"QuantityUOM\": \"EA\",\r\n      \"LineNumber\": \"1\",\r\n      \"Weight\": 0.0,\r\n      \"ExtendedAttributes\": [\r\n        {\r\n          \"Name\": \"Color\",\r\n          \"Value\": \"Blue\"\r\n        },\r\n        {\r\n          \"Name\": \"Size\",\r\n          \"Value\": \"Size 15\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"Identifier\": {\r\n  },\r\n  \"OrderNumber\": \"1234\",\r\n  \"VendorNumber\": \"12345\",\r\n  \"PartnerPO\": \"PO1234\",\r\n  \"OrderDate\": \"2015-11-13T18:34:52.411Z\",\r\n  \"Payments\": [\r\n    {\r\n      \"Method\": \"CC\",\r\n      \"PaymentDate\": \"0001-01-01T00:00:00\"\r\n    }\r\n  ],\r\n  \"PaymentTerm\": {\r\n    \"PayInNumberOfDays\": 0,\r\n    \"DiscountInNumberOfDays\": 0,\r\n    \"AvailableDiscount\": 0.0,\r\n    \"DueDate\": \"0001-01-01T00:00:00\",\r\n    \"DiscountDueDate\": \"0001-01-01T00:00:00\",\r\n    \"EffectiveDate\": \"0001-01-01T00:00:00\"\r\n  },\r\n  \"ShipmentInfos\": [\r\n  ],\r\n  \"ShipToAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"AddressCode\": \"333\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\"\r\n  },\r\n  \"BillToAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Title\": \"\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"Province\": \"\",\r\n    \"AddressCode\": \"333\",\r\n    \"StateCode\": \"\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactID\": \"\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\",\r\n    \"TaxNumber\": \"\",\r\n    \"Note\": \"\"\r\n  },\r\n  \"OrderedByAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"AddressCode\": \"333\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\"\r\n  },\r\n  \"ExtendedAttributes\": [\r\n    {\r\n      \"Name\": \"EXAMPLE\",\r\n      \"Value\": \"Portal\"\r\n    }\r\n  ],\r\n  \"TotalAmount\": 0.0,\r\n  \"StatusCode\": 0,\r\n  \"HandlingAmount\": 0.0,\r\n  \"Note\": \"Thank you for shopping at ONLINE!\"\r\n}"},"url":"https://stage.commerceapi.io/api/v1/Shipments?subscription-key={{subscription-key}}","description":"<p>This step will be the same as <strong>Step 6: Post a Shipment</strong> under the <strong>Supplier Order Lifecycle</strong>. For more details on posting shipments please check there. This step will only post what was generated in the previous step. \n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>Below is a sample JSON body. For additional details on the fields and their meanings <a href=\"http://help.logicbroker.com/hc/en-us/articles/213276723-Shipment\">please see this article.</a>\nAlso, here is the link to our <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Shipment/Shipment_CreateShipment\">API reference</a>.\n<br />\n<br /></p>\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In this test the body will be the same data as provided to generate the label. </p>\n","urlObject":{"protocol":"https","path":["api","v1","Shipments"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"1be3a3ea-c876-4bb7-8eb2-1b1dadf01e0e","name":"PostShipment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\r\n  \"ShipFromAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"AddressCode\": \"333\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\"\r\n  },\r\n  \"ExpectedDeliveryDate\": \"2015-11-13T18:34:52.411Z\",\r\n  \"BillofLading\": \"BOL1234\",\r\n  \"PRONumber\": \"PRO1234\",\r\n  \"ShipmentNumber\": \"SH1234\",\r\n  \"ShipmentLines\": [\r\n    {\r\n      \"ItemIdentifier\": {\r\n        \"SupplierSKU\": \"V-123123\",\r\n        \"PartnerSKU\": \"1234567\",\r\n        \"ManufacturerSKU\": \"0025252\",\r\n        \"UPC\": \"0123456789012\",\r\n        \"ISBN\": \"string\"\r\n      },\r\n      \"Price\": 2.0,\r\n      \"RetailPrice\": 0.0,\r\n      \"Cost\": 0.0,\r\n      \"MSRP\": 0.0,\r\n      \"Description\": \"Glass Bottle\",\r\n      \"Discounts\": [],\r\n      \"ShipmentInfos\": [\r\n        {\r\n          \"DateShipped\": \"0001-01-01T12:00:00\",\r\n          \"CarrierCode\": \"FEDG1\",\r\n          \"ClassCode\": \"FDEG_GD\",\r\n          \"ServiceLevelCode\": \"string\",\r\n          \"TrackingNumber\": \"TRK11111\",\r\n          \"ContainerCode\": \"{{SSCCCode}}\",\r\n          \"Qty\": 15,\r\n          \"ContainerType\": \"CTN\",\r\n          \"Height\": 0.0,\r\n          \"Width\": 0.0,\r\n          \"Length\": 0.0,\r\n          \"DimensionUnit\": \"IN\",\r\n          \"Weight\": 0.0,\r\n          \"WeightUnit\": \"LB\"\r\n        }\r\n      ],\r\n      \"Taxes\": [],\r\n      \"Quantity\": 90,\r\n      \"QuantityUOM\": \"EA\",\r\n      \"LineNumber\": \"1\",\r\n      \"Weight\": 0.0,\r\n      \"ExtendedAttributes\": [\r\n        {\r\n          \"Name\": \"Color\",\r\n          \"Value\": \"Blue\"\r\n        },\r\n        {\r\n          \"Name\": \"Size\",\r\n          \"Value\": \"Size 15\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"Identifier\": {\r\n  },\r\n  \"OrderNumber\": \"1234\",\r\n  \"VendorNumber\": \"12345\",\r\n  \"PartnerPO\": \"PO1234\",\r\n  \"OrderDate\": \"2015-11-13T18:34:52.411Z\",\r\n  \"Payments\": [\r\n    {\r\n      \"Method\": \"CC\",\r\n      \"PaymentDate\": \"0001-01-01T00:00:00\"\r\n    }\r\n  ],\r\n  \"PaymentTerm\": {\r\n    \"PayInNumberOfDays\": 0,\r\n    \"DiscountInNumberOfDays\": 0,\r\n    \"AvailableDiscount\": 0.0,\r\n    \"DueDate\": \"0001-01-01T00:00:00\",\r\n    \"DiscountDueDate\": \"0001-01-01T00:00:00\",\r\n    \"EffectiveDate\": \"0001-01-01T00:00:00\"\r\n  },\r\n  \"ShipmentInfos\": [\r\n  ],\r\n  \"ShipToAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"AddressCode\": \"333\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\"\r\n  },\r\n  \"BillToAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Title\": \"\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"Province\": \"\",\r\n    \"AddressCode\": \"333\",\r\n    \"StateCode\": \"\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactID\": \"\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\",\r\n    \"TaxNumber\": \"\",\r\n    \"Note\": \"\"\r\n  },\r\n  \"OrderedByAddress\": {\r\n    \"CompanyName\": \"Warehouse 123\",\r\n    \"FirstName\": \"WGuy\",\r\n    \"LastName\": \"House\",\r\n    \"Address1\": \"123 Warehouse St\",\r\n    \"Address2\": \"Building A\",\r\n    \"City\": \"Shelton\",\r\n    \"State\": \"CT\",\r\n    \"Country\": \"US\",\r\n    \"Zip\": \"06484\",\r\n    \"AddressCode\": \"333\",\r\n    \"Phone\": \"123-123-1234\",\r\n    \"ContactType\": 0,\r\n    \"Email\": \"WH@Warehouse.com\"\r\n  },\r\n  \"ExtendedAttributes\": [\r\n    {\r\n      \"Name\": \"EXAMPLE\",\r\n      \"Value\": \"Portal\"\r\n    }\r\n  ],\r\n  \"TotalAmount\": 0.0,\r\n  \"StatusCode\": 0,\r\n  \"HandlingAmount\": 0.0,\r\n  \"Note\": \"Thank you for shopping at ONLINE!\"\r\n}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Shipments?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Shipments"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Length","key":"Content-Length","value":"68","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Tue, 22 Nov 2016 17:15:13 GMT","description":"The date and time that the message was sent"},{"name":"Location","key":"Location","value":"https://stage.commerceapi.io/api/v1/Shipments/54930","description":"Used in redirection, or when a new resource has been created."},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"201\",\"Message\":\"Created\",\"Body\":{\"LogicbrokerKey\":\"54930\"}}"},{"id":"e6db42e6-2005-4c52-93cc-d1f66dc9cebf","name":"SampleShipmentResponse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{{ShipDetail}}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Shipments?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Shipments"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Length","key":"Content-Length","value":"68","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Fri, 30 Sep 2016 19:19:36 GMT","description":"The date and time that the message was sent"},{"name":"Location","key":"Location","value":"https://stage.commerceapi.io/api/v1/Shipments/48951","description":"Used in redirection, or when a new resource has been created."},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"201\",\"Message\":\"Created\",\"Body\":{\"LogicbrokerKey\":\"48951\"}}"}],"_postman_id":"8205a33b-a17d-4f81-94a3-3a5e1d349b8e"}],"id":"3d487a59-b598-4a3c-bd38-d1ab8bdb5c65","description":"<p>In the previous flow, the shipment assumed the container code will be a properly formatted SSCC-18 and that the shipment would be posted through logicbroker first and then the labels would be downloaded. \n<br />\n<br />\nIn this example, we will be calling LB to generate a formatted SSCC-18 code, use that to create shipment data to create a label, and then last post the shipment. </p>\n","_postman_id":"3d487a59-b598-4a3c-bd38-d1ab8bdb5c65"},{"name":"4. Suppliers Inventory","item":[{"name":" Step 1: Setup Items (Optional)","id":"a816e9e6-3a17-489b-8f15-c8dfd2b1298a","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":{"0":{"name":"StandardFeed.csv","lastModified":1464233513547,"lastModifiedDate":"2016-05-26T03:31:53.547Z","webkitRelativePath":"","size":2005,"type":"application/vnd.ms-excel"},"length":1},"value":null}]},"url":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId/Matching?subscription-key={{subscription-key}}","description":"<p>In this step the purpose would be to create the products in the logicbroker system. This will establish standard product data such as product identifiers, description, warehouse, pricing etc. For details on the standard feed format and samples, <a href=\"http://help.logicbroker.com/hc/en-us/articles/202341179-Inventory-CSV-Supplier-Standard\">see this article</a>. Remember when setting up the products, it is required that the linking between <strong>SupplierSKU</strong> and <strong>MerchantSKU</strong> is setup.\n<br />\n<br />\nOnce the attributes are established inventory updates can be received and will automatically match based on <strong>SupplierSKU</strong>. \n<br />\n<br />\nNote this step is <strong>optional</strong> as the products can be created during the updates. To do this you will need to login to the portal and navigate to <strong>Feed Management</strong>.\n<br /></p>\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Supplier-Inventory-Page.png\" />\n\n<p>For more details around the <strong>Inventory Management</strong> page in the logicbroker portal <a href=\"http://help.logicbroker.com/hc/en-us/articles/210146893-Inventory-Management-Page\">please see this article</a>.</p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Inventory/Inventory_Broadcast\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This will determine which partner will be updated.<br /></td><td>integer</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>Use the sample document in <a href=\"http://help.logicbroker.com/hc/en-us/articles/202341179-Inventory-CSV-Supplier-Standard\">this article</a> to test. In the collection you will need to make sure that the global variable <strong>{{ReceiverCompanyID}}</strong> is set so the appropriate partner is updated.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Inventory",":partnerId","Matching"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"partnerId","type":"any","value":"{{ReceiverCompanyID}}","key":"partnerId"},{"type":"any","value":"{"},{"type":"any","value":"{","key":1},{"type":"any","value":"R","key":2},{"type":"any","value":"e","key":3},{"type":"any","value":"c","key":4},{"type":"any","value":"e","key":5},{"type":"any","value":"i","key":6},{"type":"any","value":"v","key":7},{"type":"any","value":"e","key":8},{"type":"any","value":"r","key":9},{"type":"any","value":"C","key":10},{"type":"any","value":"o","key":11},{"type":"any","value":"m","key":12},{"type":"any","value":"p","key":13},{"type":"any","value":"a","key":14},{"type":"any","value":"n","key":15},{"type":"any","value":"y","key":16},{"type":"any","value":"I","key":17},{"type":"any","value":"D","key":18},{"type":"any","value":"}","key":19},{"type":"any","value":"}","key":20}]}},"response":[{"id":"80f87b65-c35b-43c3-b1dd-9568bfbfafc7","name":" Step 1: Setup Items (Optional)","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":{"0":{}}}]},"url":{"raw":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId/Matching?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Inventory",":partnerId","Matching"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"partnerId","value":""},{"value":"","key":"undefined"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"*","description":""},{"name":"cache-control","key":"cache-control","value":"private","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Thu, 01 Feb 2018 16:37:39 GMT","description":""},{"name":"server","key":"server","value":"Microsoft-IIS/8.5","description":""},{"name":"strict-transport-security","key":"strict-transport-security","value":"max-age=31536000","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-aspnet-version","key":"x-aspnet-version","value":"4.0.30319","description":""},{"name":"x-logicbroker-request-limit","key":"x-logicbroker-request-limit","value":"99","description":""},{"name":"x-powered-by","key":"x-powered-by","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"File queued for processing.\"}"}],"_postman_id":"a816e9e6-3a17-489b-8f15-c8dfd2b1298a"},{"name":"Step 2A: Update Inventory for All Partners","id":"b430bd7b-f210-49b8-806a-cc05cdf0978d","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","value":null,"type":"file"}]},"url":"https://stage.commerceapi.io/api/v1/Inventory/Broadcast?transform=false&subscription-key={{subscription-key}}","description":"<p>This step will be used to update inventory for all partners using one feed. You will need to make sure that the <strong>SupplierSKU</strong> is the same across all merchants. \n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Inventory/Inventory_Broadcast\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>transform</b><br /></td><td>This will determine whether you are sending a custom CSV format. This will only work if you have a custom template setup on your account.<br /></td><td>boolean<br /></td></tr></tbody></table><p><b><br /></b></p>\n\n<p>To send a proper inventory update two fields will always need to be required. \n<br />\n<br />\n<strong>SupplierSKU:</strong> this is what isused to match.\n<br />\n<strong>Quantity:</strong> this provides your retailer the quantity on hand for that product.\n<br />\n<br /></p>\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>Use the sample document in <a href=\"http://help.logicbroker.com/hc/en-us/articles/202341179-Inventory-CSV-Supplier-Standard\">this article</a> to test.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Inventory","Broadcast"],"host":["stage","commerceapi","io"],"query":[{"key":"transform","value":"false"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"8204bf6a-f05e-4a65-820f-f87af2cce8b8","name":"Broadcast","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":{"0":{}}}]},"url":{"raw":"https://stage.commerceapi.io/api/v1/Inventory/Broadcast?transform=false&subscription-key=9C39DFA4-E061-4B3E-9504-CBDB4EDB070D","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Inventory","Broadcast"],"query":[{"key":"transform","value":"false"},{"key":"subscription-key","value":"9C39DFA4-E061-4B3E-9504-CBDB4EDB070D"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Fri, 18 Nov 2016 20:01:13 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"Imported 115 items for 23 merchant(s).\"}"}],"_postman_id":"b430bd7b-f210-49b8-806a-cc05cdf0978d"},{"name":"Step 2B: Update Inventory for One Partner","id":"3e336dcd-578b-4c57-989b-6d11e5a4aee9","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":{"0":{"name":"StandardFeed.csv","lastModified":1464233513547,"lastModifiedDate":"2016-05-26T03:31:53.547Z","webkitRelativePath":"","size":2005,"type":"application/vnd.ms-excel"},"length":1},"value":null}]},"url":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId?transform=false&subscription-key={{subscription-key}}","description":"<p>This step will be used to update inventory for only one partner. You can use this step if your <strong>SupplierSKU</strong> changes per partner or you want to send different cost, price or any other attribute per partner.\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Inventory/Inventory_Upload\">API reference</a>.</p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This will determine which partner will be updated.<br /></td><td>integer</td></tr><tr><td><b>transform</b><br /></td><td>This will determine whether you are sending a custom CSV format. This will only work if you have a custom template setup on your account.<br /></td><td>boolean</td></tr></tbody></table><p><b><br /></b></p>\n\n<p>To send a proper inventory update two fields will always need to be required. \n<br />\n<br />\n<strong>SupplierSKU:</strong> this is what isused to match.\n<br />\n<strong>Quantity:</strong> this provides your retailer the quantity on hand for that product.\n<br />\n<br /></p>\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>Use the sample document in <a href=\"http://help.logicbroker.com/hc/en-us/articles/202341179-Inventory-CSV-Supplier-Standard\">this article</a> to test.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Inventory",":partnerId"],"host":["stage","commerceapi","io"],"query":[{"key":"transform","value":"false"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"partnerId","type":"any","value":"{{ReceiverCompanyID}}","key":"partnerId"},{"type":"any","value":"{"},{"type":"any","value":"{","key":1},{"type":"any","value":"R","key":2},{"type":"any","value":"e","key":3},{"type":"any","value":"c","key":4},{"type":"any","value":"e","key":5},{"type":"any","value":"i","key":6},{"type":"any","value":"v","key":7},{"type":"any","value":"e","key":8},{"type":"any","value":"r","key":9},{"type":"any","value":"C","key":10},{"type":"any","value":"o","key":11},{"type":"any","value":"m","key":12},{"type":"any","value":"p","key":13},{"type":"any","value":"a","key":14},{"type":"any","value":"n","key":15},{"type":"any","value":"y","key":16},{"type":"any","value":"I","key":17},{"type":"any","value":"D","key":18},{"type":"any","value":"}","key":19},{"type":"any","value":"}","key":20}]}},"response":[{"id":"867f9ef4-e825-42ee-8e03-7feef73c6eca","name":"updateinventoyr","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":{"0":{}}}]},"url":{"raw":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId?transform=false&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Inventory",":partnerId"],"query":[{"key":"transform","value":"false"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"partnerId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Fri, 18 Nov 2016 21:10:56 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"Imported 115 items.\"}"}],"_postman_id":"3e336dcd-578b-4c57-989b-6d11e5a4aee9"},{"name":"Delete all SKU mappings (Optional)","id":"a937b1e1-40ad-4bf0-b75e-eac3b74f4f40","request":{"method":"DELETE","header":[],"url":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId/Matching?subscription-key={{subscription-key}}","description":"<p>The purpopse of this call is to remove all <strong>MerchantSKU</strong> mappings, and the rest of the products attributes will remain. This will allow you to update the <strong>MerchantSKU</strong> without losing important attributes such as quantity or price.</p>\n<p>This call does not need to be implemented to be compliant with your retailers. You can perform this in the portal by going to <strong>Feed Management</strong> and clicking <strong>Clear All Matches</strong>.</p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Inventory/Inventory_DeleteMappings\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This will determine which partner will be updated.<br /></td><td>integer</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection you will need to make sure that the global variable <strong>{{ReceiverCompanyID}}</strong> is set so the appropriate partner is updated.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Inventory",":partnerId","Matching"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"partnerId","type":"any","value":"{{ReceiverCompanyID}}","key":"partnerId"},{"type":"any","value":"{"},{"type":"any","value":"{","key":1},{"type":"any","value":"R","key":2},{"type":"any","value":"e","key":3},{"type":"any","value":"c","key":4},{"type":"any","value":"e","key":5},{"type":"any","value":"i","key":6},{"type":"any","value":"v","key":7},{"type":"any","value":"e","key":8},{"type":"any","value":"r","key":9},{"type":"any","value":"C","key":10},{"type":"any","value":"o","key":11},{"type":"any","value":"m","key":12},{"type":"any","value":"p","key":13},{"type":"any","value":"a","key":14},{"type":"any","value":"n","key":15},{"type":"any","value":"y","key":16},{"type":"any","value":"I","key":17},{"type":"any","value":"D","key":18},{"type":"any","value":"}","key":19},{"type":"any","value":"}","key":20}]}},"response":[{"id":"1dd555ad-c40b-429b-b5c1-e899c907df27","name":"Deleteallmatches","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId/Matching?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Inventory",":partnerId","Matching"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"partnerId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Fri, 18 Nov 2016 21:48:13 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"Cleared 118 matches.\"}"}],"_postman_id":"a937b1e1-40ad-4bf0-b75e-eac3b74f4f40"},{"name":"Delete all inventory records (Optional)","id":"1e36311e-d08b-47d2-bcf3-08a332858e4c","request":{"method":"DELETE","header":[],"url":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId?subscription-key={{subscription-key}}","description":"<p>The purpopse of this call is to remove all product data for a select partner.\nThis call does not need to be implemented to be compliant with your retailers. You can perform this in the portal by going to <strong>Feed Management</strong> and clicking <strong>Remove All Items</strong>.</p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Inventory/Inventory_DeleteAll\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This will determine which partner will be updated.<br /></td><td>integer</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection you will need to make sure that the global variable <strong>{{ReceiverCompanyID}}</strong> is set so the appropriate partner is updated.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Inventory",":partnerId"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"partnerId","type":"any","value":"{{ReceiverCompanyID}}","key":"partnerId"},{"type":"any","value":"{"},{"type":"any","value":"{","key":1},{"type":"any","value":"R","key":2},{"type":"any","value":"e","key":3},{"type":"any","value":"c","key":4},{"type":"any","value":"e","key":5},{"type":"any","value":"i","key":6},{"type":"any","value":"v","key":7},{"type":"any","value":"e","key":8},{"type":"any","value":"r","key":9},{"type":"any","value":"C","key":10},{"type":"any","value":"o","key":11},{"type":"any","value":"m","key":12},{"type":"any","value":"p","key":13},{"type":"any","value":"a","key":14},{"type":"any","value":"n","key":15},{"type":"any","value":"y","key":16},{"type":"any","value":"I","key":17},{"type":"any","value":"D","key":18},{"type":"any","value":"}","key":19},{"type":"any","value":"}","key":20}]}},"response":[{"id":"df0497dc-bcf6-440e-a4ba-16660b5b4a28","name":"deleteallrecords","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/Inventory/:partnerId?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Inventory",":partnerId"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"partnerId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Fri, 18 Nov 2016 21:55:29 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"74","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"Deleted 118 records.\"}"}],"_postman_id":"1e36311e-d08b-47d2-bcf3-08a332858e4c"}],"id":"3b1afb95-afd1-4d78-9343-129d3d79d6ad","description":"<p>This section will provide details on how to setup and update your inventory to send to your retailers or customers. All setup can be done in the portal as well and for more on how to update inventory through the portal <a href=\"http://help.logicbroker.com/hc/en-us/articles/210146893-Inventory-Management-Page\">please see this article</a>.</p>\n<p>All setup and updates will be provided by submitting a standard CSV format. If you would like a custom CSV format, please contact <a href=\"mailto:support@logicbroker.com\">support@logicbroker.com</a></p>\n","_postman_id":"3b1afb95-afd1-4d78-9343-129d3d79d6ad"},{"name":"5. Product Content","item":[{"name":"Step 1: Import Products","id":"5b932c49-3d62-4392-8ebe-08849f1989d8","request":{"method":"POST","header":[{"key":"Accept","value":"application/json, application/xml"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":{"0":{"name":"4a472456ffbe44f49a9758193efe921f.csv","lastModified":1501267460899,"lastModifiedDate":"2017-07-28T18:44:20.899Z","webkitRelativePath":"","size":1223558,"type":"application/vnd.ms-excel"},"length":1},"value":null}]},"url":"https://stage.commerceapi.io/api/v1/Product/:partnerId?subscription-key={{subscription-key}}","description":"<p>This endpoint will be used to post a new product feed for your retailer/channel.</p>\n<p>Each retailer/channel will have a different CSV format for updating new product data. \nTo receive the specifications for your retailer or channel you can navigate to <strong>Products</strong> &gt; <strong>Product Feeds</strong> in the logicbroker portal. Select your partner and under feed specifications you can see what information is required. The column names in your CSV will need to match the column names here.\n<br />\n<br />\n<img src=\"https://www.logicbroker.com/wp-content/uploads/2018/04/Product-Feed-Managment.png\" alt=\"ProductFeedManagement.png\" /></p>\n<p>Every partner would have their own feed specification that will need to be followed. It is currently in our roadmap to include mapping configurations from one source file to all partner's specifications. For more information on when this will be available contact <a href=\"mailto:support@logicbroker.com\">support@logicbroker.com</a>.</p>\n<p>For more information on the <a href=\"https://help.logicbroker.com/hc/en-us/articles/115003468646-Product-Management-Page\">Product Management</a> page in the logicbroker portal please see this article.</p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Product/Product_Upload\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This will determine which partner will be updated. This is your partner's Account number/Company ID.<br /></td><td>integer</td></tr></tbody></table><p><b><br /></b></p>\n\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection you will need to make sure that the global variable <strong>{{ReceiverCompanyID}}</strong> is set so the appropriate partner is updated or you can update the parameters in the collection manually.</p>\n<p>Once the response is received it is important to save the <strong>FeedId</strong> as it will be used to review the feed status, get product details, update, delete, or send it.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Product",":partnerId"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"type":"any","value":"{{ReceiverCompanyID}}","key":"partnerId"}]}},"response":[{"id":"70ec266a-74c5-4436-9409-a1ab4c1badac","name":"Successful Product Import","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json, application/xml"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":{"0":{}}}]},"url":{"raw":"https://stage.commerceapi.io/api/v1/Product/:partnerId?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Product",":partnerId"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"partnerId","value":"{{ReceiverCompanyID}}"},{"value":"{{ReceiverCompanyID}}","key":"undefined"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Fri, 28 Jul 2017 19:23:01 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"FeedId\":\"d7c6aa52-40bb-470b-b755-f5322f12e9a6\",\"Message\":\"File queued for processing.\"}"}],"_postman_id":"5b932c49-3d62-4392-8ebe-08849f1989d8"},{"name":"Step 2A: Product Feed Status","id":"58f80e23-7765-4cf6-ad84-038daa2fbcb8","request":{"method":"GET","header":[{"key":"Accept","value":"application/json, application/xml"}],"url":"https://stage.commerceapi.io/api/v1/Product/:partnerId/:feedId?subscription-key={{subscription-key}}","description":"<p>The next step after you product feed has been imported. You can check the status of the feed. This check will provide a list of how many products are non-compliant according to the receiver's feed specification.</p>\n<p>You can see in the sample response if your feed is compliant and ready to send to your supplier. </p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Product/Product_GetFeedStatus\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This is your partner's Account number/Company ID.<br /></td><td>integer</td></tr><tr><td><b>feedId</b></td><td>Should be provided in the response when importing the feed initially. The feedId can also be seen on the product management page on the logicbroker portal.</td><td>string</td></tr></tbody></table><p><b><br /></b></p>\n\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection you will need to make sure that the global variable <strong>{{ReceiverCompanyID}}</strong> is set so the appropriate partner is updated or you can update the parameters in the collection manually.</p>\n<p>The response will provide you the following details:</p>\n<p><strong>Status:</strong> \"New\" means feed has not been sent, \"Complete\" means the feed was successfully sent and \"Failed\" means the feed failed to process to partner.</p>\n<p><strong>IsCompliant:</strong> boolean field will indicate if the feed is ready to be sent. If it is you can go to Step 3 to initiate the sending of the feed to your partner/channel.</p>\n<p><strong>ComplianCount:</strong> tells you how many products are compliant. </p>\n<p><strong>ItemCount:</strong> provides how many items were in the feed.</p>\n<p><strong>Fields:</strong> provides the fields included in the feed.\n<br />\n<br />\nIf the <strong>IsCompliant</strong> flag is set as \"false\" you can make edits to your product feeds using the next steps 2B - 2E or you can process the edits directly through the logicbroker portal on the <a href=\"https://stageportal.logicbroker.com/product-feeds/\">Product Management page</a></p>\n","urlObject":{"protocol":"https","path":["api","v1","Product",":partnerId",":feedId"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"description":{"content":"<p>Should use the same CoId as in the first step. This is the partner receiving the feed. </p>\n","type":"text/plain"},"type":"any","value":"{{ReceiverCompanyID}}","key":"partnerId"},{"description":{"content":"<p>Should be pulled from the previous step, when importing the product list.</p>\n","type":"text/plain"},"type":"any","value":"{{feedId}}","key":"feedId"}]}},"response":[{"id":"fb72d905-79c3-42d3-ab9d-c541c00c573c","name":"Successful All Products Compliant","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json, application/xml"}],"url":{"raw":"https://stage.commerceapi.io/api/v1/Product/:partnerId/:feedId?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Product",":partnerId",":feedId"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"partnerId","value":"101128"},{"key":"feedId","value":"d7c6aa52-40bb-470b-b755-f5322f12e9a6"},{"value":"d7c6aa52-40bb-470b-b755-f5322f12e9a6","key":"undefined"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Fri, 28 Jul 2017 19:31:48 GMT","description":"The date and time that the message was sent"},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Id\":\"d7c6aa52-40bb-470b-b755-f5322f12e9a6\",\"Status\":\"New\",\"IsCompliant\":true,\"CompliantCount\":2046,\"ItemCount\":2046,\"Fields\":[\"sku\",\"title\",\"description\",\"base_image\",\"image1\"]}"}],"_postman_id":"58f80e23-7765-4cf6-ad84-038daa2fbcb8"},{"name":"Step 2B: Get List of Products (Optional)","id":"24414e75-3718-4de7-be0f-faab7c308120","request":{"method":"GET","header":[{"key":"Accept","value":"application/json, application/xml"}],"url":"https://stage.commerceapi.io/api/v1/Product/:partnerId/:feedId/Items?page={{page}}&pageSize={{pageSize}}&isCompliant=true&subscription-key={{subscription-key}}","description":"<p>After you check your product feed status; if any products were marked as non-compliant, you can review them through the portal or do it programatically using this endpoint. </p>\n<p>This will provide a you a list response based on your filter and will give you all product data that was included in the feed. To make individual edits to your product you will need to save the <strong>Id</strong> of that product. The <strong>Id</strong> is the internal key within logicbroker for that product.  </p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Product/Product_GetFeedItems\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This is your partner's Account number/Company ID.<br /></td><td>integer</td></tr><tr><td><b>feedId</b></td><td>Should be provided in the response when importing the feed initially. The feedId can also be seen on the product management page on the logicbroker portal.</td><td>string</td></tr><tr><td><b>isCompliant</b></td><td>Used to filter which products to review. Typically used to review your non-compliant (<b>false</b>) products.</td><td>boolean</td></tr><tr><td><b>page</b></td><td>pagination will need to be followed to get all products &gt; 100.</td><td>integer</td></tr><tr><td><b>pageSize</b></td><td>By default 100 products will be included per page.</td><td>integer</td></tr></tbody></table><p><b><br /></b></p>\n\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection you will need to make sure that the global variable <strong>{{ReceiverCompanyID}}</strong> is set so the appropriate partner is updated or you can update the parameters in the collection manually.</p>\n<p>The response will provide you the following details for each record:</p>\n<p><strong>Data.Key:</strong> This is the column name provided in the feed.</p>\n<p><strong>Data.Value:</strong> this is the value for the key field provided in the feed.</p>\n<p><strong>Id:</strong> internal logicbroker identifier for the product in the feed. You will need to save this to make edits to the product in future calls.</p>\n<br />\nFor more information on viewing product data see this article -  [View Product Feed Details](https://help.logicbroker.com/hc/en-us/articles/115003468706-View-Product-Feed-Details)","urlObject":{"protocol":"https","path":["api","v1","Product",":partnerId",":feedId","Items"],"host":["stage","commerceapi","io"],"query":[{"key":"page","value":"{{page}}"},{"key":"pageSize","value":"{{pageSize}}"},{"key":"isCompliant","value":"true"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"type":"any","value":"{{ReceiverCompanyID}}","key":"partnerId"},{"type":"any","value":"{{feedId}}","key":"feedId"}]}},"response":[{"id":"221149c7-fb81-4083-a75d-e618ff36e5bd","name":"Successful_ListProducts_Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json, application/xml"}],"url":{"raw":"https://stage.commerceapi.io/api/v1/Product/:partnerId/:feedId/Items?isCompliant=true&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Product",":partnerId",":feedId","Items"],"query":[{"key":"isCompliant","value":"true"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"partnerId","value":"101128"},{"key":"feedId","value":"d7c6aa52-40bb-470b-b755-f5322f12e9a6"},{"value":"d7c6aa52-40bb-470b-b755-f5322f12e9a6","key":"undefined"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Mon, 31 Jul 2017 13:39:34 GMT","description":"The date and time that the message was sent"},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Records\":[{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT02-XL-White\"},{\"Key\":\"title\",\"Value\":\"Tristan Endurance Tank-XL-White\"},{\"Key\":\"description\",\"Value\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.</p>\\r\\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt02-white_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt02-white_main.jpg\"}],\"Id\":\"1\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS09-XS-Red\"},{\"Key\":\"title\",\"Value\":\"Ryker LumaTech&trade; Tee (Crew-neck)-XS-Red\"},{\"Key\":\"description\",\"Value\":\"<p>The crew-neck Ryker LumaTech&trade; Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.</p>\\r\\n<p>&bull; Royal polyester tee with black accents.<br />&bull; Relaxed fit. <br />&bull; Short-Sleeve. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms09-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms09-red_main.jpg\"}],\"Id\":\"10\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT01-M-Gray\"},{\"Key\":\"title\",\"Value\":\"Erikssen CoolTech&trade; Fitness Tank-M-Gray\"},{\"Key\":\"description\",\"Value\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\\r\\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt01-gray_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt01-gray_main.jpg\"}],\"Id\":\"100\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH08-30-Purple\"},{\"Key\":\"title\",\"Value\":\"Sybil Running Short-30-Purple\"},{\"Key\":\"description\",\"Value\":\"<p>Fortunately, it's okay to look cute while you're working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.</p>\\r\\n<p>&bull; Blue running shorts with green waist.<br />&bull; Drawstring-adjustable waist.<br />&bull; 4\\\" inseam. Machine wash/line dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh08-purple_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh08-purple_main.jpg\"}],\"Id\":\"1000\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MP05-34-Black\"},{\"Key\":\"title\",\"Value\":\"Kratos Gym Pant-34-Black\"},{\"Key\":\"description\",\"Value\":\"<p>Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\\r\\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/p/mp05-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/p/mp05-black_main.jpg\"}],\"Id\":\"1001\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS10-S-Blue\"},{\"Key\":\"title\",\"Value\":\"Logan  HeatTec&reg; Tee-S-Blue\"},{\"Key\":\"description\",\"Value\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\\r\\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms10-blue_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms10-blue_main.jpg\"}],\"Id\":\"1002\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH09-28-Gray\"},{\"Key\":\"title\",\"Value\":\"Mimi All-Purpose Short-28-Gray\"},{\"Key\":\"description\",\"Value\":\"<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.</p>\\r\\n<p>&bull; Gray/seafoam two-layer shorts.<br />&bull; Water-resistant construction.<br />&bull; Inner mesh brief for breathable support.<br />&bull; 2.0\\\" inseam.<br />&bull; Reflective trim for visibility.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh09-gray_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh09-gray_main.jpg\"}],\"Id\":\"1003\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MP05-36-Blue\"},{\"Key\":\"title\",\"Value\":\"Kratos Gym Pant-36-Blue\"},{\"Key\":\"description\",\"Value\":\"<p>Like it's namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.</p>\\r\\n<p>&bull; Navy cotton straight leg pants.<br />&bull; Relaxed fit. <br />&bull; 2 side-seam pockets. <br />&bull; Internal zip pocket. <br />&bull; Drawstring waist. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/p/mp05-blue_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/p/mp05-blue_main.jpg\"}],\"Id\":\"1004\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS10-M-Red\"},{\"Key\":\"title\",\"Value\":\"Logan  HeatTec&reg; Tee-M-Red\"},{\"Key\":\"description\",\"Value\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\\r\\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms10-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms10-red_main.jpg\"}],\"Id\":\"1005\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH09-29-Green\"},{\"Key\":\"title\",\"Value\":\"Mimi All-Purpose Short-29-Green\"},{\"Key\":\"description\",\"Value\":\"<p>You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.</p>\\r\\n<p>&bull; Gray/seafoam two-layer shorts.<br />&bull; Water-resistant construction.<br />&bull; Inner mesh brief for breathable support.<br />&bull; 2.0\\\" inseam.<br />&bull; Reflective trim for visibility.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh09-green_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh09-green_main.jpg\"}],\"Id\":\"1006\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS10-XL-Black\"},{\"Key\":\"title\",\"Value\":\"Logan  HeatTec&reg; Tee-XL-Black\"},{\"Key\":\"description\",\"Value\":\"<p>Soft and lightweight, the Logan HeatTec&reg; Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.</p>\\r\\n<p>&bull; Semi-fitted. <br />&bull; Crew neckline. <br />&bull; Machine wash/tumble dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms10-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms10-black_main.jpg\"}],\"Id\":\"1007\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH10-28-Orange\"},{\"Key\":\"title\",\"Value\":\"Ana Running Short-28-Orange\"},{\"Key\":\"description\",\"Value\":\"<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.</p>\\r\\n<p>&bull; Black/pink two-layer shorts.<br />&bull; Low-rise elastic waistband.<br />&bull; Relaxed fit. <br />&bull; Ultra-lightweight fabric. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh10-orange_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh10-orange_main.jpg\"}],\"Id\":\"1008\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS07-XS-Black\"},{\"Key\":\"title\",\"Value\":\"Deion Long-Sleeve EverCool&trade; Tee-XS-Black\"},{\"Key\":\"description\",\"Value\":\"<p>When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\\r\\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms07-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms07-black_main.jpg\"}],\"Id\":\"1009\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ12-L-Blue\"},{\"Key\":\"title\",\"Value\":\"Proteus Fitness Jackshirt-L-Blue\"},{\"Key\":\"description\",\"Value\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.</p>\\r\\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj12-blue_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj12-blue_main.jpg\"}],\"Id\":\"101\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH10-29-White\"},{\"Key\":\"title\",\"Value\":\"Ana Running Short-29-White\"},{\"Key\":\"description\",\"Value\":\"<p>Time to lace up your kicks and beat that personal best in the Ana Running Short. It's designed with breathable mesh side panels to help keep you cool while you master the miles.</p>\\r\\n<p>&bull; Black/pink two-layer shorts.<br />&bull; Low-rise elastic waistband.<br />&bull; Relaxed fit. <br />&bull; Ultra-lightweight fabric. <br />&bull; Internal drawstring. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh10-white_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh10-white_main.jpg\"}],\"Id\":\"1010\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS07-S-Green\"},{\"Key\":\"title\",\"Value\":\"Deion Long-Sleeve EverCool&trade; Tee-S-Green\"},{\"Key\":\"description\",\"Value\":\"<p>When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\\r\\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms07-green_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms07-green_main.jpg\"}],\"Id\":\"1011\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH11-28-Red\"},{\"Key\":\"title\",\"Value\":\"Ina Compression Short-28-Red\"},{\"Key\":\"description\",\"Value\":\"<p>One of Luma's most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you're running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.</p>\\r\\n<p>&bull; Royal blue bike shorts.<br />&bull; Compression fit. <br />&bull; Moisture-wicking. <br />&bull; Anti-microbial. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh11-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh11-red_main.jpg\"}],\"Id\":\"1012\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS07-M-White\"},{\"Key\":\"title\",\"Value\":\"Deion Long-Sleeve EverCool&trade; Tee-M-White\"},{\"Key\":\"description\",\"Value\":\"<p>When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\\r\\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms07-white_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms07-white_main.jpg\"}],\"Id\":\"1013\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ06-XL-Blue\"},{\"Key\":\"title\",\"Value\":\"Jupiter All-Weather Trainer -XL-Blue\"},{\"Key\":\"description\",\"Value\":\"<p>Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.</p>\\r\\n<p>&bull; Relaxed fit. <br />&bull; Hand pockets. <br />&bull; Machine wash/dry.<br />&bull; Reflective safety trim.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj06-blue_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj06-blue_main.jpg\"}],\"Id\":\"1014\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS07-XL-Black\"},{\"Key\":\"title\",\"Value\":\"Deion Long-Sleeve EverCool&trade; Tee-XL-Black\"},{\"Key\":\"description\",\"Value\":\"<p>When you're training, ordinary tees don't cut it. That's why the Dion Long-Sleeve EverCool&trade; Tee features revolutionary Cocona&reg; fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.</p>\\r\\n<p>&bull; Fitted. <br />&bull; Contrast inner neck tape. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms07-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms07-black_main.jpg\"}],\"Id\":\"1015\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ03-XS-Black\"},{\"Key\":\"title\",\"Value\":\"Montana Wind Jacket-XS-Black\"},{\"Key\":\"description\",\"Value\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\\r\\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj03-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj03-black_main.jpg\"}],\"Id\":\"1016\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH12-29-Green\"},{\"Key\":\"title\",\"Value\":\"Erika Running Short-29-Green\"},{\"Key\":\"description\",\"Value\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\\r\\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4'' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh12-green_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh12-green_main.jpg\"}],\"Id\":\"1017\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS08-XS-Black\"},{\"Key\":\"title\",\"Value\":\"Strike Endurance Tee-XS-Black\"},{\"Key\":\"description\",\"Value\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\\r\\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms08-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms08-black_main.jpg\"}],\"Id\":\"1018\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ03-S-Green\"},{\"Key\":\"title\",\"Value\":\"Montana Wind Jacket-S-Green\"},{\"Key\":\"description\",\"Value\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\\r\\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj03-green_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj03-green_main.jpg\"}],\"Id\":\"1019\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT01-L-Orange\"},{\"Key\":\"title\",\"Value\":\"Erikssen CoolTech&trade; Fitness Tank-L-Orange\"},{\"Key\":\"description\",\"Value\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\\r\\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt01-orange_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt01-orange_main.jpg\"}],\"Id\":\"102\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH12-30-Purple\"},{\"Key\":\"title\",\"Value\":\"Erika Running Short-30-Purple\"},{\"Key\":\"description\",\"Value\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\\r\\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4'' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh12-purple_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh12-purple_main.jpg\"}],\"Id\":\"1020\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS08-S-Blue\"},{\"Key\":\"title\",\"Value\":\"Strike Endurance Tee-S-Blue\"},{\"Key\":\"description\",\"Value\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\\r\\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms08-blue_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms08-blue_main.jpg\"}],\"Id\":\"1021\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ03-M-Red\"},{\"Key\":\"title\",\"Value\":\"Montana Wind Jacket-M-Red\"},{\"Key\":\"description\",\"Value\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\\r\\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj03-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj03-red_main.jpg\"}],\"Id\":\"1022\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH12-31-Red\"},{\"Key\":\"title\",\"Value\":\"Erika Running Short-31-Red\"},{\"Key\":\"description\",\"Value\":\"<p>A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.</p>\\r\\n<p>&bull; Seafoam pattern running shorts.<br />&bull; Elastic waistband.<br />&bull; Snug fit.<br />&bull; 4'' inseam.<br />&bull; 76% premium brushed Nylon / 24% Spandex.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh12-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh12-red_main.jpg\"}],\"Id\":\"1023\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS08-M-Red\"},{\"Key\":\"title\",\"Value\":\"Strike Endurance Tee-M-Red\"},{\"Key\":\"description\",\"Value\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\\r\\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms08-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms08-red_main.jpg\"}],\"Id\":\"1024\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ03-XL-Black\"},{\"Key\":\"title\",\"Value\":\"Montana Wind Jacket-XL-Black\"},{\"Key\":\"description\",\"Value\":\"<p>Light-as-a-feather wind protection for runners, walkers and outdoor fitness buffs, the Montana Wind Jacket can be stuffed into your pocket for portable protection. Its stylish, move-with-you design makes it especially versatile.</p>\\r\\n<p>Adjustable hood. <br />Split pocket. <br />Thumb holes. <br />Machine wash/hang to dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj03-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj03-black_main.jpg\"}],\"Id\":\"1025\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS08-XL-Black\"},{\"Key\":\"title\",\"Value\":\"Strike Endurance Tee-XL-Black\"},{\"Key\":\"description\",\"Value\":\"<p>While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.</p>\\r\\n<p>&bull; Loose fit. <br />&bull; Ribbed cuffs/collar. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms08-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms08-black_main.jpg\"}],\"Id\":\"1026\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ12-XS-Black\"},{\"Key\":\"title\",\"Value\":\"Proteus Fitness Jackshirt-XS-Black\"},{\"Key\":\"description\",\"Value\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.</p>\\r\\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj12-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj12-black_main.jpg\"}],\"Id\":\"1027\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT01-XS-Gray\"},{\"Key\":\"title\",\"Value\":\"Erikssen CoolTech&trade; Fitness Tank-XS-Gray\"},{\"Key\":\"description\",\"Value\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\\r\\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt01-gray_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt01-gray_main.jpg\"}],\"Id\":\"1028\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ12-S-Blue\"},{\"Key\":\"title\",\"Value\":\"Proteus Fitness Jackshirt-S-Blue\"},{\"Key\":\"description\",\"Value\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.</p>\\r\\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj12-blue_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj12-blue_main.jpg\"}],\"Id\":\"1029\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ12-XL-Orange\"},{\"Key\":\"title\",\"Value\":\"Proteus Fitness Jackshirt-XL-Orange\"},{\"Key\":\"description\",\"Value\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.</p>\\r\\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj12-orange_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj12-orange_main.jpg\"}],\"Id\":\"103\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT01-S-Orange\"},{\"Key\":\"title\",\"Value\":\"Erikssen CoolTech&trade; Fitness Tank-S-Orange\"},{\"Key\":\"description\",\"Value\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\\r\\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt01-orange_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt01-orange_main.jpg\"}],\"Id\":\"1030\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ12-M-Orange\"},{\"Key\":\"title\",\"Value\":\"Proteus Fitness Jackshirt-M-Orange\"},{\"Key\":\"description\",\"Value\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.</p>\\r\\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj12-orange_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj12-orange_main.jpg\"}],\"Id\":\"1031\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT01-M-Red\"},{\"Key\":\"title\",\"Value\":\"Erikssen CoolTech&trade; Fitness Tank-M-Red\"},{\"Key\":\"description\",\"Value\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\\r\\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt01-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt01-red_main.jpg\"}],\"Id\":\"1032\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ12-XL-Black\"},{\"Key\":\"title\",\"Value\":\"Proteus Fitness Jackshirt-XL-Black\"},{\"Key\":\"description\",\"Value\":\"<p>Part jacket, part shirt, the Proteus Fitness Jackshirt makes an ideal companion for outdoor training, camping or loafing on crisp days. Natural Cocona&reg; technology brings breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you're riding a bike or replacing a sink valve.</p>\\r\\n<p>&bull; 1/4 zip. Stand-up collar. <br />&bull; Machine wash/dry.<br />&bull; Quilted inner layer.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj12-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj12-black_main.jpg\"}],\"Id\":\"1033\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT01-XL-Gray\"},{\"Key\":\"title\",\"Value\":\"Erikssen CoolTech&trade; Fitness Tank-XL-Gray\"},{\"Key\":\"description\",\"Value\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\\r\\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt01-gray_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt01-gray_main.jpg\"}],\"Id\":\"1034\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS04-XS-Black\"},{\"Key\":\"title\",\"Value\":\"Gobi HeatTec&reg; Tee-XS-Black\"},{\"Key\":\"description\",\"Value\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.</p>\\r\\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms04-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms04-black_main.jpg\"}],\"Id\":\"1035\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT02-XS-Gray\"},{\"Key\":\"title\",\"Value\":\"Tristan Endurance Tank-XS-Gray\"},{\"Key\":\"description\",\"Value\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.</p>\\r\\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt02-gray_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt02-gray_main.jpg\"}],\"Id\":\"1036\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS04-S-Orange\"},{\"Key\":\"title\",\"Value\":\"Gobi HeatTec&reg; Tee-S-Orange\"},{\"Key\":\"description\",\"Value\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.</p>\\r\\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms04-orange_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms04-orange_main.jpg\"}],\"Id\":\"1037\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT02-S-Red\"},{\"Key\":\"title\",\"Value\":\"Tristan Endurance Tank-S-Red\"},{\"Key\":\"description\",\"Value\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.</p>\\r\\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt02-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt02-red_main.jpg\"}],\"Id\":\"1038\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS04-M-Red\"},{\"Key\":\"title\",\"Value\":\"Gobi HeatTec&reg; Tee-M-Red\"},{\"Key\":\"description\",\"Value\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.</p>\\r\\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms04-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms04-red_main.jpg\"}],\"Id\":\"1039\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT01-XL-Red\"},{\"Key\":\"title\",\"Value\":\"Erikssen CoolTech&trade; Fitness Tank-XL-Red\"},{\"Key\":\"description\",\"Value\":\"<p>A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech&trade; Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.</p>\\r\\n<p>&bull; Red performance tank.<br />&bull; Slight scoop neckline. <br />&bull; Reflectivity. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt01-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt01-red_main.jpg\"}],\"Id\":\"104\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT02-M-White\"},{\"Key\":\"title\",\"Value\":\"Tristan Endurance Tank-M-White\"},{\"Key\":\"description\",\"Value\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.</p>\\r\\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt02-white_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt02-white_main.jpg\"}],\"Id\":\"1040\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS04-XL-Black\"},{\"Key\":\"title\",\"Value\":\"Gobi HeatTec&reg; Tee-XL-Black\"},{\"Key\":\"description\",\"Value\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.</p>\\r\\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms04-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms04-black_main.jpg\"}],\"Id\":\"1041\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT02-XL-Gray\"},{\"Key\":\"title\",\"Value\":\"Tristan Endurance Tank-XL-Gray\"},{\"Key\":\"description\",\"Value\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.</p>\\r\\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt02-gray_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt02-gray_main.jpg\"}],\"Id\":\"1042\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS05-XS-Black\"},{\"Key\":\"title\",\"Value\":\"Helios EverCool&trade; Tee-XS-Black\"},{\"Key\":\"description\",\"Value\":\"<p>Pumping iron or dialing the track, you've got cool comfort on your side in our short-sleeve Helios EverCool&trade; Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.</p>\\r\\n<p>&bull; Teal quick dry tee.<br />&bull; Relaxed fit. <br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms05-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms05-black_main.jpg\"}],\"Id\":\"1043\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH11-L-Red\"},{\"Key\":\"title\",\"Value\":\"Grayson Crewneck Sweatshirt -L-Red\"},{\"Key\":\"description\",\"Value\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.</p>\\r\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh11-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh11-red_main.jpg\"}],\"Id\":\"1044\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"24-UG02\"},{\"Key\":\"title\",\"Value\":\"Pursuit Lumaflex&trade; Tone Band\"},{\"Key\":\"description\",\"Value\":\"<p>Save your knees and joints while strengthening arms, legs and core with the Pursuit Lumaflex&trade; Tone Band. This ultra-durable training tool lets you complete a full-body workout free of bulky machines or free weights.</p>\\r\\n<ul>\\r\\n<li>Home and/or gym use.</li>\\r\\n<li>Ergonomic handles.</li>\\r\\n</ul>\"},{\"Key\":\"base_image\",\"Value\":\"/u/g/ug02-bk-0.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/u/g/ug02-bk-0.jpg\"}],\"Id\":\"1045\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WP10-28-Gray\"},{\"Key\":\"title\",\"Value\":\"Daria Bikram Pant-28-Gray\"},{\"Key\":\"description\",\"Value\":\"<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.</p>\\r\\n<p>&bull; Heather gray capris with pink striped waist.<br />&bull; Flatlock seams.<br />&bull; Interior pocket.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/p/wp10-gray_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/p/wp10-gray_main.jpg\"}],\"Id\":\"1046\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WT01-S-Blue\"},{\"Key\":\"title\",\"Value\":\"Bella Tank-S-Blue\"},{\"Key\":\"description\",\"Value\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.</p>\\r\\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/t/wt01-blue_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/t/wt01-blue_main.jpg\"}],\"Id\":\"1047\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH11-XL-White\"},{\"Key\":\"title\",\"Value\":\"Grayson Crewneck Sweatshirt -XL-White\"},{\"Key\":\"description\",\"Value\":\"<p>The Grayson Crewneck Sweatshirt gives you that ageless, classic look &ndash; a style that comes back around nearly every season. What's more, its performance and temp-control values are always in vogue.</p>\\r\\n<p>&bull; Cream crewneck sweatshirt with black accents.<br />&bull; 80% cotton/20% polyester fleece. <br />&bull; Patterned knit hood lining. <br />&bull; Knit cuffs and waist. <br />&bull; Pouch pocket. <br />&bull; Curl edged seam detail</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh11-white_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh11-white_main.jpg\"}],\"Id\":\"1048\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"24-WG088\"},{\"Key\":\"title\",\"Value\":\"Sprite Foam Roller\"},{\"Key\":\"description\",\"Value\":\"<p>It hurts so good to use the Sprite Foam Roller on achy, tired muscles for myofascial massage therapy. Or you can add this fundamental piece to your Pilates and yoga accouterment, or apply towards core stability, strengthening and balance exercise. </p>\\r\\n<ul>\\r\\n<li>6'' wide by 12'' long.</li>\\r\\n<li>Safe for myofascial release.</li>\\r\\n<li>EPP or PE foam options.</li>\\r\\n<li>Solid, dense, closed-cell foam.</li>\\r\\n</ul>\"},{\"Key\":\"base_image\",\"Value\":\"/l/u/luma-foam-roller.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/l/u/luma-foam-roller.jpg\"}],\"Id\":\"1049\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS04-XS-Red\"},{\"Key\":\"title\",\"Value\":\"Gobi HeatTec&reg; Tee-XS-Red\"},{\"Key\":\"description\",\"Value\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.</p>\\r\\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms04-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms04-red_main.jpg\"}],\"Id\":\"105\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WP10-29-White\"},{\"Key\":\"title\",\"Value\":\"Daria Bikram Pant-29-White\"},{\"Key\":\"description\",\"Value\":\"<p>The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.</p>\\r\\n<p>&bull; Heather gray capris with pink striped waist.<br />&bull; Flatlock seams.<br />&bull; Interior pocket.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/p/wp10-white_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/p/wp10-white_main.jpg\"}],\"Id\":\"1050\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WT01-M-Orange\"},{\"Key\":\"title\",\"Value\":\"Bella Tank-M-Orange\"},{\"Key\":\"description\",\"Value\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.</p>\\r\\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/t/wt01-orange_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/t/wt01-orange_main.jpg\"}],\"Id\":\"1051\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH12-XS-Red\"},{\"Key\":\"title\",\"Value\":\"Ajax Full-Zip Sweatshirt -XS-Red\"},{\"Key\":\"description\",\"Value\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\\r\\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh12-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh12-red_main.jpg\"}],\"Id\":\"1052\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"24-WG081-blue\"},{\"Key\":\"title\",\"Value\":\"Sprite Stasis Ball 55 cm\"},{\"Key\":\"description\",\"Value\":\"<p>The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.</p>\\r\\n<ul>\\r\\n<li>Durable, burst-resistant design.</li>\\r\\n<li>Hand pump included.</li>\\r\\n</ul>\"},{\"Key\":\"base_image\",\"Value\":\"/l/u/luma-stability-ball.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/l/u/luma-stability-ball.jpg\"}],\"Id\":\"1053\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WP11-28-Red\"},{\"Key\":\"title\",\"Value\":\"Sylvia Capri-28-Red\"},{\"Key\":\"description\",\"Value\":\"<p>Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.</p>\\r\\n<p>&bull; Green striped capri.<br />&bull; Strategic side seam<br />&bull; Comfort gusset with lining.<br />&bull; Flat seaming.<br />&bull; Wide waistband.<br />&bull; Moisture wicking.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/p/wp11-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/p/wp11-red_main.jpg\"}],\"Id\":\"1054\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WT01-XL-Black\"},{\"Key\":\"title\",\"Value\":\"Bella Tank-XL-Black\"},{\"Key\":\"description\",\"Value\":\"<p>Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you'll be supported and stylish at the same time.</p>\\r\\n<p>&bull; Navy blue tank top - cotton.<br />&bull; Feminine scoop neckline.<br />&bull; Power mesh lining in shelf bra for superior support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/t/wt01-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/t/wt01-black_main.jpg\"}],\"Id\":\"1055\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH12-M-Blue\"},{\"Key\":\"title\",\"Value\":\"Ajax Full-Zip Sweatshirt -M-Blue\"},{\"Key\":\"description\",\"Value\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\\r\\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh12-blue_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh12-blue_main.jpg\"}],\"Id\":\"1056\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"24-WG083-gray\"},{\"Key\":\"title\",\"Value\":\"Sprite Stasis Ball 75 cm\"},{\"Key\":\"description\",\"Value\":\"<p>The Sprite Stasis Ball gives you the toned abs, sides, and back you want by amping up your core workout. With bright colors and a burst-resistant design, it's a must-have for every hard-core exercise addict. Use for abdominal conditioning, balance training, yoga, or even physical therapy.</p>\\r\\n<ul>\\r\\n<li>75 cm plastic shell.</li>\\r\\n<li>Durable, burst-resistant design.</li>\\r\\n<li>Hand pump included.</li>\\r\\n</ul>\"},{\"Key\":\"base_image\",\"Value\":\"/l/u/luma-stability-ball-gray.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/l/u/luma-stability-ball-gray.jpg\"}],\"Id\":\"1057\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WT02-XS-Green\"},{\"Key\":\"title\",\"Value\":\"Zoe Tank-XS-Green\"},{\"Key\":\"description\",\"Value\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\\r\\n<p>&bull; Salmon heather tank top.<br />&bull; 1\\\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/t/wt02-green_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/t/wt02-green_main.jpg\"}],\"Id\":\"1058\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH12-L-Green\"},{\"Key\":\"title\",\"Value\":\"Ajax Full-Zip Sweatshirt -L-Green\"},{\"Key\":\"description\",\"Value\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\\r\\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh12-green_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh12-green_main.jpg\"}],\"Id\":\"1059\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT02-XS-White\"},{\"Key\":\"title\",\"Value\":\"Tristan Endurance Tank-XS-White\"},{\"Key\":\"description\",\"Value\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.</p>\\r\\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt02-white_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt02-white_main.jpg\"}],\"Id\":\"106\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"24-WG086\"},{\"Key\":\"title\",\"Value\":\"Sprite Yoga Strap 8 foot\"},{\"Key\":\"description\",\"Value\":\"<p>The Sprite Yoga Strap is your untiring partner in demanding stretches, holds and alignment routines. The strap's 100% organic cotton fabric is woven tightly to form a soft, textured yet non-slip surface. The plastic clasp buckle is easily adjustable, lightweight and durable under strain.</p>\\r\\n<ul>\\r\\n<li>8' long x 1.0\\\" wide.\\r\\n<li>100% soft and durable cotton.\\r\\n<li>Plastic cinch buckle is easy to use.\\r\\n<li>Three natural colors made from phthalate and heavy metal free dyes.\\r\\n</ul>\"},{\"Key\":\"base_image\",\"Value\":\"/l/u/luma-yoga-strap.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/l/u/luma-yoga-strap.jpg\"}],\"Id\":\"1060\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WP12-29-Blue\"},{\"Key\":\"title\",\"Value\":\"Deirdre Relaxed-Fit Capri-29-Blue\"},{\"Key\":\"description\",\"Value\":\"<p>Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.</p>\\r\\n<p>&bull; Heather gray capris with mint green waist & accents.<br />&bull; Comfortable, relaxed fit with high rise.<br />&bull; Moisture-wicking, 4-way stretch construction.<br />&bull; Lined with mesh for better support.<br />&bull; Hidden pocket at waistband.<br />&bull; Flatlock seams and lined gusset for comfort.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/p/wp12-blue_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/p/wp12-blue_main.jpg\"}],\"Id\":\"1061\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WT02-S-Orange\"},{\"Key\":\"title\",\"Value\":\"Zoe Tank-S-Orange\"},{\"Key\":\"description\",\"Value\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\\r\\n<p>&bull; Salmon heather tank top.<br />&bull; 1\\\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/t/wt02-orange_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/t/wt02-orange_main.jpg\"}],\"Id\":\"1062\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH12-XL-Red\"},{\"Key\":\"title\",\"Value\":\"Ajax Full-Zip Sweatshirt -XL-Red\"},{\"Key\":\"description\",\"Value\":\"<p>The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.</p>\\r\\n<p>&bull; Mint striped full zip hoodie.<br />&bull; 100% bonded polyester fleece.<br />&bull; Pouch pocket.<br />&bull; Rib cuffs and hem. <br />&bull; Machine washable.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh12-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh12-red_main.jpg\"}],\"Id\":\"1063\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"24-MG03\"},{\"Key\":\"title\",\"Value\":\"Summit Watch\"},{\"Key\":\"description\",\"Value\":\"<p>Trek high and low in the attractive Summit Watch, which features a digital LED display with time and date, stopwatch, lap counter, and 3-second backlight. It can also calculate the number of steps taken and calories burned.</p>\\r\\n<ul>\\r\\n<li>Brushed metal case.</li>\\r\\n<li>Water resistant (100 meters).</li>\\r\\n<li>Buckle clasp.</li>\\r\\n<li>Strap fits 7\\\" - 10\\\".</li>\\r\\n<li>1-year limited warranty.</li>\\r\\n</ul>\"},{\"Key\":\"base_image\",\"Value\":\"/m/g/mg03-br-0.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/g/mg03-br-0.jpg\"}],\"Id\":\"1064\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WP13-28-Blue\"},{\"Key\":\"title\",\"Value\":\"Portia Capri-28-Blue\"},{\"Key\":\"description\",\"Value\":\"<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.</p>\\r\\n<p>&bull; Salmon heather capri sweats.<br />&bull; Relaxed fit, high waist. <br />&bull; Inseam: 21\\\". <br />&bull; Wide elastic waistband. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/p/wp13-blue_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/p/wp13-blue_main.jpg\"}],\"Id\":\"1065\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WT02-M-Yellow\"},{\"Key\":\"title\",\"Value\":\"Zoe Tank-M-Yellow\"},{\"Key\":\"description\",\"Value\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\\r\\n<p>&bull; Salmon heather tank top.<br />&bull; 1\\\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/t/wt02-yellow_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/t/wt02-yellow_main.jpg\"}],\"Id\":\"1066\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH13-XS-Lavender\"},{\"Key\":\"title\",\"Value\":\"Marco Lightweight Active Hoodie-XS-Lavender\"},{\"Key\":\"description\",\"Value\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\\r\\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh13-lavender_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh13-lavender_main.jpg\"}],\"Id\":\"1067\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"24-WG01\"},{\"Key\":\"title\",\"Value\":\"Bolo Sport Watch\"},{\"Key\":\"description\",\"Value\":\"<p>The Bolo Sport Watch is sleek, sporty and sized just right to fit your smaller wrist. Easy to read and set up, it features a large digital face and button-activated alarm and stopwatch. The soft-touch resin band promises no-pinch comfort, while the water-resistant design lets you take your workout to the lap pool.</p>\\r\\n<ul>\\r\\n<li>Displays time, day and date.</li>\\r\\n<li>Two-tone design.</li>\\r\\n<li>12/24 hour formats.</li>\\r\\n<li>Nickel-free buckle on band.</li>\\r\\n<li>Battery included.</li>\\r\\n</ul>\"},{\"Key\":\"base_image\",\"Value\":\"/w/g/wg01-bk-0.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/g/wg01-bk-0.jpg\"}],\"Id\":\"1068\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WP13-29-Green\"},{\"Key\":\"title\",\"Value\":\"Portia Capri-29-Green\"},{\"Key\":\"description\",\"Value\":\"<p>From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you're bending and stretching, while contrast stripes promise a dash of sporty style.</p>\\r\\n<p>&bull; Salmon heather capri sweats.<br />&bull; Relaxed fit, high waist. <br />&bull; Inseam: 21\\\". <br />&bull; Wide elastic waistband. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/p/wp13-green_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/p/wp13-green_main.jpg\"}],\"Id\":\"1069\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MS04-M-Black\"},{\"Key\":\"title\",\"Value\":\"Gobi HeatTec&reg; Tee-M-Black\"},{\"Key\":\"description\",\"Value\":\"<p>When the training gets intense, the Gobi HeatTec&reg; Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that's sure to keep you moving.</p>\\r\\n<p>&bull; Orange micropolyester shirt.<br />&bull; HeatTec&reg; wicking fabric.<br />&bull; Crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/s/ms04-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/s/ms04-black_main.jpg\"}],\"Id\":\"107\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WT02-XL-Green\"},{\"Key\":\"title\",\"Value\":\"Zoe Tank-XL-Green\"},{\"Key\":\"description\",\"Value\":\"<p>The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.</p>\\r\\n<p>&bull; Salmon heather tank top.<br />&bull; 1\\\" elastic band on inner bra.<br />&bull; Mesh lining on shelf bra for support.<br />&bull; Soft, breathable fabric.<br />&bull; Dry wick fabric to stay cool and dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/t/wt02-green_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/t/wt02-green_main.jpg\"}],\"Id\":\"1070\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH13-M-Blue\"},{\"Key\":\"title\",\"Value\":\"Marco Lightweight Active Hoodie-M-Blue\"},{\"Key\":\"description\",\"Value\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\\r\\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh13-blue_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh13-blue_main.jpg\"}],\"Id\":\"1071\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"240-LV05\"},{\"Key\":\"title\",\"Value\":\"LifeLong Fitness IV\"},{\"Key\":\"description\",\"Value\":\"<p>Luma LifeLong Fitness Series is a world recognized, evidence based exercise program designed specifically for individuals focused on staying active their whole lives. If followed regularly, participants will see improved heart rate and blood pressure, increased mobility, reduced joint pain and overall improvement in functional fitness and health.</>\\r\\n<ul>\\r\\n<li>10 minute warm up.</li>\\r\\n<li>30 minutes of mild aerobics.</li>\\r\\n<li>20 minutes of strength, stretch and balance.</li>\\r\\n<li>Extensive modifications for varying fitness levels.</li>\\r\\n</ul>\"},{\"Key\":\"base_image\",\"Value\":\"/l/t/lt02.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/l/t/lt02.jpg\"}],\"Id\":\"1072\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH01-28-Green\"},{\"Key\":\"title\",\"Value\":\"Fiona Fitness Short-28-Green\"},{\"Key\":\"description\",\"Value\":\"<p>Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\\r\\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh01-green_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh01-green_main.jpg\"}],\"Id\":\"1073\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WT03-XS-Orange\"},{\"Key\":\"title\",\"Value\":\"Nora Practice Tank-XS-Orange\"},{\"Key\":\"description\",\"Value\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\\r\\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/t/wt03-orange_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/t/wt03-orange_main.jpg\"}],\"Id\":\"1074\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH13-L-Green\"},{\"Key\":\"title\",\"Value\":\"Marco Lightweight Active Hoodie-L-Green\"},{\"Key\":\"description\",\"Value\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\\r\\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh13-green_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh13-green_main.jpg\"}],\"Id\":\"1075\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"240-LV09\"},{\"Key\":\"title\",\"Value\":\"Luma Yoga For Life\"},{\"Key\":\"description\",\"Value\":\"<ul><li>Increase strength + flexibility + metabolism</li><li>Burn calories + feel great</li><li>Gain energy + youthfulness + mental wellness</li> </ul><h3 style=\\\"margin-top: 30px;\\\">Download description</h3><p><strong style=\\\"display: block; margin: 20px 0 5px;\\\">Tone up mind and body</strong>Pro Yoga Instructor and Master Practitioner Marie Peale helps tone and sculpt your physique with her invigorating yet gentle approach.</p><p>You'll learn to use yoga to relax, control stress and increase your calorie-burning capacity, all while exploring traditional and new yoga poses that lengthen and strengthen your full muscular structure.  </p><ul><li>Easy download</li><li>Audio options: Music and instruction or instruction only</li><li>Heart rate techniques explained</li><li>Breathing techniques explained</li><li>Move through exercises at your own pace</li></ul><p>Two 25-minute workout episodes and one 40-minute workout episode with warm-up and cool down:</p><p><strong style=\\\"display: block; margin: 20px 0 5px;\\\">Episode 1</strong>Creative, fun session geared toward opening your lungs. Combines stretching and breathing with a focus on hips and shoulders. </p><p><strong style=\\\"display: block; margin: 20px 0 5px;\\\">Episode 2</strong>Ramp up the tempo and energy with calorie-burning flows. A stimulating workout introducing the body-sculpting power of yoga.</p><p><strong style=\\\"display: block; margin: 20px 0 5px;\\\">Episode 3</strong>Push your fitness reach and stamina with an intense series of standing and floor exercises and poses. End this extra-length session with a meditative cool down.</p><h3 style=\\\"margin-top: 30px;\\\">instructor bio</h3><p><strong style=\\\"display: block; margin: 20px 0 5px;\\\">About Marie</strong>Marie is a trained martial artist and dancer with a BS in Biological Engineering and over 10 years as a certified yoga teacher. Marie has studied yoga in England, India and, in 2009, at the Ashraqat Ashram Yoga Farm in the United States. She has been teaching full time since then. Her focus on strength and wellness combines a deep knowledge of human biology and motivation guided by unconditional love for her audience.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/l/t/lt06.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/l/t/lt06.jpg\"}],\"Id\":\"1076\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH01-29-Red\"},{\"Key\":\"title\",\"Value\":\"Fiona Fitness Short-29-Red\"},{\"Key\":\"description\",\"Value\":\"<p>Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\\r\\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh01-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh01-red_main.jpg\"}],\"Id\":\"1077\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WT03-S-Purple\"},{\"Key\":\"title\",\"Value\":\"Nora Practice Tank-S-Purple\"},{\"Key\":\"description\",\"Value\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\\r\\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/t/wt03-purple_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/t/wt03-purple_main.jpg\"}],\"Id\":\"1078\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH13-XL-Lavender\"},{\"Key\":\"title\",\"Value\":\"Marco Lightweight Active Hoodie-XL-Lavender\"},{\"Key\":\"description\",\"Value\":\"<p>For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona&reg; fibers pull moisture away.</p>\\r\\n<p>&bull; Light blue heather full zip hoodie.<br />&bull; Fitted flatlock seams.<br />&bull; Matching lining and drawstring. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh13-lavender_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh13-lavender_main.jpg\"}],\"Id\":\"1079\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MT02-M-Gray\"},{\"Key\":\"title\",\"Value\":\"Tristan Endurance Tank-M-Gray\"},{\"Key\":\"description\",\"Value\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.</p>\\r\\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/t/mt02-gray_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt02-gray_main.jpg\"}],\"Id\":\"108\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH01-XS-Orange\"},{\"Key\":\"title\",\"Value\":\"Chaz Kangeroo Hoodie-XS-Orange\"},{\"Key\":\"description\",\"Value\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\\r\\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh01-orange_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh01-orange_main.jpg\"}],\"Id\":\"1080\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH01-31-Black\"},{\"Key\":\"title\",\"Value\":\"Fiona Fitness Short-31-Black\"},{\"Key\":\"description\",\"Value\":\"<p>Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\\r\\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh01-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh01-black_main.jpg\"}],\"Id\":\"1081\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WT03-M-Red\"},{\"Key\":\"title\",\"Value\":\"Nora Practice Tank-M-Red\"},{\"Key\":\"description\",\"Value\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\\r\\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/t/wt03-red_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/t/wt03-red_main.jpg\"}],\"Id\":\"1082\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ01-XS-Yellow\"},{\"Key\":\"title\",\"Value\":\"Beaumont Summit Kit-XS-Yellow\"},{\"Key\":\"description\",\"Value\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.</p>\\r\\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj01-yellow_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj01-yellow_main.jpg\"}],\"Id\":\"1083\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH01-M-Black\"},{\"Key\":\"title\",\"Value\":\"Chaz Kangeroo Hoodie-M-Black\"},{\"Key\":\"description\",\"Value\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\\r\\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh01-black_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh01-black_main.jpg\"}],\"Id\":\"1084\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WSH01-32-Green\"},{\"Key\":\"title\",\"Value\":\"Fiona Fitness Short-32-Green\"},{\"Key\":\"description\",\"Value\":\"<p>Don't let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.</p>\\r\\n<p>&bull; Black run shorts <br />- cotton/spandex.<br />&bull; 5&rdquo; inseam.<br />&bull; Machine wash/Line dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/s/wsh01-green_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/s/wsh01-green_main.jpg\"}],\"Id\":\"1085\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"WT03-XL-Orange\"},{\"Key\":\"title\",\"Value\":\"Nora Practice Tank-XL-Orange\"},{\"Key\":\"description\",\"Value\":\"<p>A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!</p>\\r\\n<p>&bull; Pink stripped tank with side rouching.<br />&bull; Pre-shrunk.<br />&bull; Garment dyed.<br />&bull; 92% Organic Cotton/8% Lycra.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/w/t/wt03-orange_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/w/t/wt03-orange_main.jpg\"}],\"Id\":\"1086\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MJ01-M-Orange\"},{\"Key\":\"title\",\"Value\":\"Beaumont Summit Kit-M-Orange\"},{\"Key\":\"description\",\"Value\":\"<p>The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker's paradise package.</p>\\r\\n<p>&bull; Yellow full zip rain jacket.<br />&bull; Full-zip front. <br />&bull; Stand-up collar. <br />&bull; Elasticized cuffs. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/j/mj01-orange_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/j/mj01-orange_main.jpg\"}],\"Id\":\"1087\"},{\"IsCompliant\":true,\"Data\":[{\"Key\":\"sku\",\"Value\":\"MH01-L-Gray\"},{\"Key\":\"title\",\"Value\":\"Chaz Kangeroo Hoodie-L-Gray\"},{\"Key\":\"description\",\"Value\":\"<p>Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.</p>\\r\\n<p>&bull; Two-tone gray heather hoodie.<br />&bull; Drawstring-adjustable hood. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"base_image\",\"Value\":\"/m/h/mh01-gray_main.jpg\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/h/mh01-gray_main.jpg\"}],\"Id\":\"1088\"}],\"TotalPages\":21,\"CurrentPage\":0,\"TotalRecords\":2046}"}],"_postman_id":"24414e75-3718-4de7-be0f-faab7c308120"},{"name":"Step 2C: Update Single Product (Optional)","id":"b4e4a514-0aef-4e97-978c-3c475a637b46","request":{"method":"PUT","header":[{"key":"Accept","value":"application/json, application/xml"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"Key\": \"sku\",\r\n    \"Value\": \"MT02-XL-White001\"\r\n  }\r\n]"},"url":"https://stage.commerceapi.io/api/v1/Product/:partnerId/:feedId/Items/:productId?subscription-key={{subscription-key}}","description":"<p>After you have the product <strong>Id</strong> that you want to make edits to, you can make a request here to update that product. </p>\n<p>You can edit all data fields provided on the original field. You can also add new fields that didn't exist in the original feed.</p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Product/Product_UpdateFeedItem\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This is your partner's Account number/Company ID.<br /></td><td>integer</td></tr><tr><td><b>feedId</b></td><td>Should be provided in the response when importing the feed initially. The feedId can also be seen on the product management page on the logicbroker portal.</td><td>string</td></tr><tr><td><b>productId</b><br /></td><td>This is the logicbroker Id assigned for that product, created on the initial upload.</td><td>integer</td></tr></tbody></table><p><b><br /></b></p>\n\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection you will need to make sure that the global variable <strong>{{ReceiverCompanyID}}</strong> is set so the appropriate partner is updated or you can update the parameters in the collection manually.</p>\n<p>The response will provide you with all the details for the record updated, included below:</p>\n<p><strong>Data.Key:</strong> This is the column name provided in the feed.</p>\n<p><strong>Data.Value:</strong> this is the value for the key field provided in the feed.</p>\n<p><strong>Id:</strong> internal logicbroker identifier for the product in the feed.</p>\n<br />\nFor more information on editing product data see this article -  [View Product Feed Details](https://help.logicbroker.com/hc/en-us/articles/115003468706-View-Product-Feed-Details)","urlObject":{"protocol":"https","path":["api","v1","Product",":partnerId",":feedId","Items",":productId"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"type":"any","value":"{{ReceiverCompanyID}}","key":"partnerId"},{"type":"any","value":"{{feedId}}","key":"feedId"},{"type":"any","value":"{{productId}}","key":"productId"}]}},"response":[{"id":"a22d0254-2904-4933-9d91-27783bc6cc58","name":"Successful_Product_Update","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json, application/xml"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"Key\": \"sku\",\r\n    \"Value\": \"MT02-XL-White-0001\"\r\n  }\r\n]"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Product/:partnerId/:feedId/Items/:productId?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Product",":partnerId",":feedId","Items",":productId"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"partnerId","value":"101128"},{"key":"feedId","value":"d7c6aa52-40bb-470b-b755-f5322f12e9a6"},{"key":"productId","value":"1"},{"value":"1","key":"undefined"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Mon, 31 Jul 2017 14:08:19 GMT","description":"The date and time that the message was sent"},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"IsCompliant\":true,\"Data\":[{\"Key\":\"base_image\",\"Value\":\"/m/t/mt02-white_main.jpg\"},{\"Key\":\"description\",\"Value\":\"<p>Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it's designed to keep you completely cool and dry on the long haul.</p>\\r\\n<p>&bull; White performance tank.<br />&bull; Stylish contrast stitching. <br />&bull; Relaxed fit. <br />&bull; Ribbed crew neckline. <br />&bull; Machine wash/dry.</p>\"},{\"Key\":\"image1\",\"Value\":\"https://magento2.logicbroker.com/pub/media/catalog/product/cache/1/image/700x560/e9c3970ab036de70892d86c6d221abfe/m/t/mt02-white_main.jpg\"},{\"Key\":\"sku\",\"Value\":\"MT02-XL-White-0001\"},{\"Key\":\"title\",\"Value\":\"Tristan Endurance Tank-XL-White\"}],\"Id\":\"1\"}"}],"_postman_id":"b4e4a514-0aef-4e97-978c-3c475a637b46"},{"name":"Step 2D: Remove Product (Optional)","id":"0dadc3f2-454f-40b9-a88d-d48eaeb2d1a8","request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json, application/xml"}],"url":"https://stage.commerceapi.io/api/v1/Product/:partnerId/:feedId/Items/:productId?subscription-key={{subscription-key}}","description":"<p>This endpoint will be used to remove any unwanted products from your product feed. </p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Product/Product_RemoveFeedItem\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This is your partner's Account number/Company ID.<br /></td><td>integer</td></tr><tr><td><b>feedId</b></td><td>Should be provided in the response when importing the feed initially. The feedId can also be seen on the product management page on the logicbroker portal.</td><td>string</td></tr><tr><td><b>productId</b><br /></td><td>This is the logicbroker Id assigned for that product, created on the initial upload.</td><td>integer</td></tr></tbody></table><p><b><br /></b></p>\n\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection you will need to make sure that the global variable <strong>{{ReceiverCompanyID}}</strong> is set so the appropriate partner is updated or you can update the parameters in the collection manually.</p>\n<p>The response will provide you with text \"Item Removed.\" if successful. You should also see your item count decrease on the feed when a product is successully deleted.</p>\n<br />\nFor more information on editing product data see this article -  [View Product Feed Details](https://help.logicbroker.com/hc/en-us/articles/115003468706-View-Product-Feed-Details)","urlObject":{"protocol":"https","path":["api","v1","Product",":partnerId",":feedId","Items",":productId"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"type":"any","value":"{{ReceiverCompanyID}}","key":"partnerId"},{"type":"any","value":"{{feedId}}","key":"feedId"},{"type":"any","value":"{{productId}}","key":"productId"}]}},"response":[{"id":"e2920cc2-ef38-4c3b-99fe-9b841dd82a69","name":"Successful_Item_Delete","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json, application/xml"}],"url":{"raw":"https://stage.commerceapi.io/api/v1/Product/:partnerId/:feedId/Items/:productId?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Product",":partnerId",":feedId","Items",":productId"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"partnerId","value":"101128"},{"key":"feedId","value":"d7c6aa52-40bb-470b-b755-f5322f12e9a6"},{"key":"productId","value":"1"},{"value":"1","key":"undefined"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Mon, 31 Jul 2017 14:30:54 GMT","description":"The date and time that the message was sent"},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"Item removed.\"}"}],"_postman_id":"0dadc3f2-454f-40b9-a88d-d48eaeb2d1a8"},{"name":"Step 3: Send Product Feed","id":"7d86a490-7426-45f2-936e-ff2c954878f6","request":{"method":"PUT","header":[{"key":"Accept","value":"application/json, application/xml"}],"url":"https://stage.commerceapi.io/api/v1/Product/:partnerId/:feedId?subscription-key={{subscription-key}}","description":"<p>This endpoint will be used to send a new complian product feed to your retailer/channel.</p>\n<p>Logicbroker will prevent a feed from sending if there are non-compliant products in it, this can be checked using <strong>Step 2A: Product Feed Status</strong>. </p>\n<p>By sending the feed this means the all product content will get sent to either the retailer's custom endpoint or by default posting the CSV to their logicbroker FTP/SFTP <strong>/Product/Inbound</strong> directory. If you would like logicbroker to integrate the feed to a custom endpoint, please contact <a href=\"mailto:support@logicbroker.com\">support@logicbroker.com</a>.</p>\n<p>Details will be provided under <strong>Events</strong> in logicbroker. If the feed is successfully processed the status of the feed will move to <strong>Complete</strong>, if it failed the status will be <strong>Failed</strong>. </p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Product/Product_SendFeed\">API reference</a>.</p>\n<p></p><table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>partnerId</b><br /></td><td>This is your partner's Account number/Company ID.<br /></td><td>integer</td></tr><tr><td><b>feedId</b></td><td>Should be provided in the response when importing the feed initially. The feedId can also be seen on the product management page on the logicbroker portal.</td><td>string</td></tr></tbody></table><p><b><br /></b></p>\n\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the collection you will need to make sure that the global variable <strong>{{ReceiverCompanyID}}</strong> is set so the appropriate partner is updated or you can update the parameters in the collection manually.</p>\n<p>Once the feed is sent, it is best to check with your channel or retailer to make sure they processed all the product data successfully.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Product",":partnerId",":feedId"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"type":"any","value":"{{ReceiverCompanyID}}","key":"partnerId"},{"type":"any","value":"{{feedId}}","key":"feedId"}]}},"response":[{"id":"0c9e86f4-12bf-47dc-9eba-11c154ef7185","name":"Successfull_Send_Product_Feed","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json, application/xml"}],"url":{"raw":"https://stage.commerceapi.io/api/v1/Product/:partnerId/:feedId?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Product",":partnerId",":feedId"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"partnerId","value":"101128"},{"key":"feedId","value":"d7c6aa52-40bb-470b-b755-f5322f12e9a6"},{"value":"d7c6aa52-40bb-470b-b755-f5322f12e9a6","key":"undefined"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Mon, 31 Jul 2017 14:46:00 GMT","description":"The date and time that the message was sent"},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Body\":\"Request will be processed asynchronously.\"}"}],"_postman_id":"7d86a490-7426-45f2-936e-ff2c954878f6"}],"id":"81483ed6-5ad4-4ae6-9f4d-913554440a96","description":"<p>The product endpoints will be used to automatically process product content data to your retailers. </p>\n<p>The flow for processing product will be:</p>\n<ol>\n<li>Post your Retailer formatted CSV</li>\n<li>Review feed status and fix/remove non-compliant products</li>\n<li>Send fixed product feed to your retailer or channel.</li>\n</ol>\n","_postman_id":"81483ed6-5ad4-4ae6-9f4d-913554440a96"},{"name":"6. Activity Events/Error Handling","item":[{"name":"Step 1: Search for Failed Documents","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);\r","for(var i = 0; i < jsonData.Body.Documents.length; i++){\r","    \r","    postman.setGlobalVariable(\"EventLogicbrokerKey\", jsonData.Body.Documents[0].LogicbrokerKey);\r","}"]}}],"id":"b32a60dc-99a8-4c53-86b0-bc815f78c25b","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v1/Document?Filters.status=1200&subscription-key={{subscription-key}}","description":"<p>In this step, we will get a list of all documents that are in a <strong>Failed (1200)</strong> status and will get the associated error details for each document. The documents will include Orders, Acknowledgments, Shipments, Invoices, and Returns.\n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/Document/Document_SearchDocuments\">API reference</a>.</p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>Filters.status</b><br /></td><td>Used to filter based on document status code. For failed documents ready to pull events this will be the <b>1200 </b><a href=\"http://help.logicbroker.com/hc/en-us/sections/202122723-Document-Statuses\">status</a>.<br /></td><td>string</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In this testing scenario status <strong>Failed (1200)</strong> will be defaulted as the parameter and the full list of the documents will be provided. The first document's <strong>LogicbrokerKey</strong> will get saved as a global variable <strong>{{EventLogicbrokerKey}}</strong> and will be used in the next step to get the event details associated with that document.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Document"],"host":["stage","commerceapi","io"],"query":[{"key":"Filters.status","value":"1200"},{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"80a766fb-3259-423d-9ab3-720b6366e4a8","name":"failed documents","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/Document?Filters.status=1200&subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Document"],"query":[{"key":"Filters.status","value":"1200"},{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 21 Nov 2016 20:51:05 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Body\":{\"Documents\":[{\"LogicbrokerKey\":50365,\"SourceKey\":\"Customer Order #\",\"ReferenceNumber\":\"3376103367\",\"SenderId\":101085,\"ReceiverId\":100988,\"Type\":\"Order\",\"Date\":\"2016-10-19T14:57:49.91\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":51222,\"SourceKey\":\"Test12345\",\"ReferenceNumber\":\"51222\",\"SenderId\":101085,\"ReceiverId\":100988,\"Type\":\"Order\",\"Date\":\"2016-11-04T20:04:30.93\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54557,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"PO1000988\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T18:10:27.07\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54564,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"PO1000988\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T18:46:44.963\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54569,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"PO1000988\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T18:47:40.917\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54573,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100100\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T19:12:54.03\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54576,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"NaN\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T19:16:05.04\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54587,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100101\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T19:23:20.497\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54588,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100102\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T19:23:38.957\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54591,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100103\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T19:34:11.847\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54592,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100104\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T19:36:08.243\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54593,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100105\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T19:36:26.877\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54594,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100106\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T19:37:52.55\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54595,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100107\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T19:41:46.037\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54599,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100108\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T19:47:41.207\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54605,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100109\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T19:51:16.2\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54608,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100110\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T20:13:02.427\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54609,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100111\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T20:14:04.767\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54617,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100112\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T20:33:28.117\",\"Status\":\"Failed\"},{\"LogicbrokerKey\":54618,\"SourceKey\":\"002152252\",\"ReferenceNumber\":\"100113\",\"SenderId\":101085,\"ReceiverId\":101085,\"Type\":\"Order\",\"Date\":\"2016-11-15T20:34:07.373\",\"Status\":\"Failed\"}],\"TotalPages\":1}}"}],"_postman_id":"b32a60dc-99a8-4c53-86b0-bc815f78c25b"},{"name":"Step 2: Get Events Related to Document","event":[{"listen":"test","script":{"type":"text/javascript","exec":["//Event","var jsonData = JSON.parse(responseBody);","var firstevent = jsonData.Body.ActivityEvents[0];","jsonData.Body.ActivityEvents[0].Processed = true;","postman.setGlobalVariable(\"EventDetail\", JSON.stringify(firstevent, null, '\\t'));","postman.setGlobalVariable(\"EventID\", jsonData.Body.ActivityEvents[0].Id);"]}}],"id":"cd1464c1-e97e-4704-9152-61d3c8c17b6e","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v1/ActivityEvents?subscription-key={{subscription-key}}&Filters.logicbrokerKey={{EventLogicbrokerKey}}&Filters.processed=false&Filters.level=Alert","description":"<p>At this step, we now want to pull the error details associated with the documents received in the last step. Logicbroker generates alot of different informative events that may not be useful for error handling, these can include entries like status changed or New PO received. To make sure only errors are viewed, we will filter based on <strong>Level</strong>. </p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/ActivityEvent/ActivityEvent_SearchActivityEvent\">API reference</a>.</p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>Filters.logicbrokerKey</b><br /></td><td>The unique identifier for the document. Will be used to get the event details for that document.<br /></td><td>string</td></tr><tr><td><b>Filters.processed</b></td><td>Will be used to filter whether the event was processed or not. Generally, once you process the event, it is best to update it as processed. This way you don't pull the event multiple times. </td><td>boolean</td></tr><tr><td><b>Filters.level</b></td><td>Used to filter the event type. <b>Alert </b>will show errors and <b>Info </b>will provide only informational data. <b>Alert </b>should always be used to get errors related to your document. </td><td>string</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In this test case, <strong>Alert</strong> will be defaulted as the <strong>Filters.level</strong> and will only pull unprocessed events as well (Filters.Processed = false). In addition, the logicbrokerkey will default from the global variable, <strong>{{EventLogicbrokerKey}}</strong> set from the previous step.</p>\n","urlObject":{"protocol":"https","path":["api","v1","ActivityEvents"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"},{"key":"Filters.logicbrokerKey","value":"{{EventLogicbrokerKey}}"},{"key":"Filters.processed","value":"false"},{"key":"Filters.level","value":"Alert"}],"variable":[]}},"response":[{"id":"6d4d3cc4-7379-466b-8efb-0a70326b0b1e","name":"SampleEventDetail","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/ActivityEvents?subscription-key={{subscription-key}}&Filters.processed=false&Filters.level=Alert","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","ActivityEvents"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"},{"key":"Filters.processed","value":"false"},{"key":"Filters.level","value":"Alert"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 21 Nov 2016 20:56:22 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Body\":{\"ActivityEvents\":[{\"Id\":236871,\"Date\":\"2016-06-24T16:27:12.32\",\"SenderId\":101085,\"LogicbrokerKey\":44520,\"LinkKey\":\"1606034397\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: SIMPLE1\",\"Details\":\"We are unable to source your order because the merchant SKU 'SIMPLE1' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"SIMPLE1\\\"}\"},{\"Id\":236876,\"Date\":\"2016-06-24T16:41:21.04\",\"SenderId\":101085,\"LogicbrokerKey\":44521,\"LinkKey\":\"1606034398\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: SIMPLE1\",\"Details\":\"We are unable to source your order because the merchant SKU 'SIMPLE1' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"SIMPLE1\\\"}\"},{\"Id\":236881,\"Date\":\"2016-06-24T17:21:24.783\",\"SenderId\":101085,\"LogicbrokerKey\":44522,\"LinkKey\":\"1606034399\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: SIMPLE1\",\"Details\":\"We are unable to source your order because the merchant SKU 'SIMPLE1' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"SIMPLE1\\\"}\"},{\"Id\":236883,\"Date\":\"2016-06-24T17:26:18.423\",\"SenderId\":101085,\"LogicbrokerKey\":44523,\"LinkKey\":\"1606034400\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: SIMPLE1\",\"Details\":\"We are unable to source your order because the merchant SKU 'SIMPLE1' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"SIMPLE1\\\"}\"},{\"Id\":236888,\"Date\":\"2016-06-24T17:51:22.487\",\"SenderId\":101085,\"LogicbrokerKey\":44524,\"LinkKey\":\"1606034401\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: SIMPLE2\",\"Details\":\"We are unable to source your order because the merchant SKU 'SIMPLE2' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"SIMPLE2\\\"}\"},{\"Id\":238253,\"Date\":\"2016-07-01T19:06:09.49\",\"SenderId\":101085,\"LogicbrokerKey\":44737,\"LinkKey\":\"1607034470\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: FANCYW-Yellow\",\"Details\":\"We are unable to source your order because the merchant SKU 'FANCYW-Yellow' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"FANCYW-Yellow\\\"}\"},{\"Id\":238258,\"Date\":\"2016-07-01T19:17:05.943\",\"SenderId\":101085,\"LogicbrokerKey\":44737,\"LinkKey\":\"1607034470\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: FANCYW-Yellow\",\"Details\":\"We are unable to source your order because the merchant SKU 'FANCYW-Yellow' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"FANCYW-Yellow\\\"}\"},{\"Id\":238270,\"Date\":\"2016-07-01T19:46:06.753\",\"SenderId\":101085,\"LogicbrokerKey\":44743,\"LinkKey\":\"1607034475\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: FANCYW-Red\",\"Details\":\"We are unable to source your order because the merchant SKU 'FANCYW-Red' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"FANCYW-Red\\\"}\"},{\"Id\":238439,\"Date\":\"2016-07-05T15:03:51.75\",\"SenderId\":101085,\"LogicbrokerKey\":44748,\"LinkKey\":\"1607034477\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: FANCYW-Yellow\",\"Details\":\"We are unable to source your order because the merchant SKU 'FANCYW-Yellow' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"FANCYW-Yellow\\\"}\"},{\"Id\":238440,\"Date\":\"2016-07-05T15:03:52.973\",\"SenderId\":101085,\"LogicbrokerKey\":44749,\"LinkKey\":\"1607034478\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: FANCYW-Red\",\"Details\":\"We are unable to source your order because the merchant SKU 'FANCYW-Red' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"FANCYW-Red\\\"}\"},{\"Id\":239757,\"Date\":\"2016-07-12T20:53:44.813\",\"SenderId\":101085,\"LogicbrokerKey\":44934,\"LinkKey\":\"1606034271\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 080166483848\",\"Details\":\"We are unable to source your order because the merchant SKU '080166483848' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"080166483848\\\"}\"},{\"Id\":239758,\"Date\":\"2016-07-12T20:56:50.29\",\"SenderId\":101085,\"LogicbrokerKey\":44936,\"LinkKey\":\"1607034554\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 783048666123\",\"Details\":\"We are unable to source your order because the merchant SKU '783048666123' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"783048666123\\\"}\"},{\"Id\":239759,\"Date\":\"2016-07-12T20:56:50.087\",\"SenderId\":101085,\"LogicbrokerKey\":44935,\"LinkKey\":\"1607034553\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 080166115633\",\"Details\":\"We are unable to source your order because the merchant SKU '080166115633' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"080166115633\\\"}\"},{\"Id\":239760,\"Date\":\"2016-07-12T20:56:52.103\",\"SenderId\":101085,\"LogicbrokerKey\":44938,\"LinkKey\":\"1607034556\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 783048666123\",\"Details\":\"We are unable to source your order because the merchant SKU '783048666123' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"783048666123\\\"}\"},{\"Id\":239761,\"Date\":\"2016-07-12T20:56:51.177\",\"SenderId\":101085,\"LogicbrokerKey\":44937,\"LinkKey\":\"1607034555\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 783048666123\",\"Details\":\"We are unable to source your order because the merchant SKU '783048666123' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"783048666123\\\"}\"},{\"Id\":239762,\"Date\":\"2016-07-12T20:56:53.127\",\"SenderId\":101085,\"LogicbrokerKey\":44939,\"LinkKey\":\"1607034557\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 080166804797\",\"Details\":\"We are unable to source your order because the merchant SKU '080166804797' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"080166804797\\\"}\"},{\"Id\":239763,\"Date\":\"2016-07-12T20:56:55.757\",\"SenderId\":101085,\"LogicbrokerKey\":44940,\"LinkKey\":\"1607034558\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 783048666123\",\"Details\":\"We are unable to source your order because the merchant SKU '783048666123' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"783048666123\\\"}\"},{\"Id\":239764,\"Date\":\"2016-07-12T20:56:56.367\",\"SenderId\":101085,\"LogicbrokerKey\":44942,\"LinkKey\":\"1607034560\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 080166804797\",\"Details\":\"We are unable to source your order because the merchant SKU '080166804797' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"080166804797\\\"}\"},{\"Id\":269872,\"Date\":\"2016-11-02T17:45:40.793\",\"SenderId\":100988,\"ReceiverId\":101085,\"TypeId\":38,\"Level\":\"Alert\",\"Category\":\"Inventory\",\"Summary\":\"Inventory Import Error\",\"Details\":\"Unable to import inventory file uploaded by jrobidas. Quantity is not an integer. (Row: 19, Column: 4) \",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"User\\\":\\\"jrobidas\\\",\\\"Exception\\\":{\\\"Row\\\":19,\\\"Column\\\":4,\\\"FailedRow\\\":[\\\"0123456788912\\\",\\\"0123456788912\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"0.00\\\",\\\"0.00\\\",\\\"0.00\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"2016-07-20 01:07:37\\\"],\\\"Message\\\":\\\"Quantity is not an integer.\\\",\\\"InnerMessage\\\":\\\"Input string was not in a correct format.\\\",\\\"FailedRowString\\\":\\\"0123456788912,0123456788912,,,,0.00,0.00,0.00,,,,,,,,,,2016-07-20 01:07:37\\\",\\\"HasFailedRow\\\":true}}\"},{\"Id\":269873,\"Date\":\"2016-11-02T17:45:41.077\",\"SenderId\":101085,\"ReceiverId\":100988,\"TypeId\":38,\"Level\":\"Alert\",\"Category\":\"Inventory\",\"Summary\":\"Inventory Import Error\",\"Details\":\"Unable to import inventory file uploaded by jrobidas. Quantity is not an integer. (Row: 19, Column: 4) \",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"User\\\":\\\"jrobidas\\\",\\\"Exception\\\":{\\\"Row\\\":19,\\\"Column\\\":4,\\\"FailedRow\\\":[\\\"0123456788912\\\",\\\"0123456788912\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"0.00\\\",\\\"0.00\\\",\\\"0.00\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"\\\",\\\"2016-07-20 01:07:37\\\"],\\\"Message\\\":\\\"Quantity is not an integer.\\\",\\\"InnerMessage\\\":\\\"Input string was not in a correct format.\\\",\\\"FailedRowString\\\":\\\"0123456788912,0123456788912,,,,0.00,0.00,0.00,,,,,,,,,,2016-07-20 01:07:37\\\",\\\"HasFailedRow\\\":true}}\"},{\"Id\":269879,\"Date\":\"2016-11-02T17:56:32.773\",\"SenderId\":100988,\"ReceiverId\":101085,\"TypeId\":36,\"Level\":\"Alert\",\"Category\":\"Job\",\"Summary\":\"JOB FAILED: OutboundEdiInventoryJob\",\"Details\":\"Map 'StandardInventory' not found.\",\"Processed\":false,\"Viewed\":true,\"AdditionalData\":\"{\\\"MatchingInventoryOnly\\\":true}\"},{\"Id\":269907,\"Date\":\"2016-11-02T18:04:32.883\",\"SenderId\":100988,\"ReceiverId\":101085,\"TypeId\":36,\"Level\":\"Alert\",\"Category\":\"Job\",\"Summary\":\"JOB FAILED: OutboundEdiInventoryJob\",\"Details\":\"Value cannot be null.\\r\\nParameter name: connectionString\",\"Processed\":false,\"Viewed\":true,\"AdditionalData\":\"{\\\"MatchingInventoryOnly\\\":true}\"},{\"Id\":269911,\"Date\":\"2016-11-02T18:13:32.957\",\"SenderId\":100988,\"ReceiverId\":101085,\"TypeId\":36,\"Level\":\"Alert\",\"Category\":\"Job\",\"Summary\":\"JOB FAILED: OutboundEdiInventoryJob\",\"Details\":\"One or more errors occurred.\",\"Processed\":false,\"Viewed\":true,\"AdditionalData\":\"{\\\"MatchingInventoryOnly\\\":true}\"},{\"Id\":269917,\"Date\":\"2016-11-02T18:34:33.183\",\"SenderId\":100988,\"ReceiverId\":101085,\"TypeId\":36,\"Level\":\"Alert\",\"Category\":\"Job\",\"Summary\":\"JOB FAILED: OutboundEdiInventoryJob\",\"Details\":\"One or more errors occurred.\",\"Processed\":false,\"Viewed\":true,\"AdditionalData\":\"{\\\"MatchingInventoryOnly\\\":true}\"},{\"Id\":300849,\"Date\":\"2016-11-15T18:11:45.98\",\"SenderId\":101085,\"LogicbrokerKey\":54557,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041751\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300873,\"Date\":\"2016-11-15T18:48:48.327\",\"SenderId\":101085,\"LogicbrokerKey\":54564,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041751\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300874,\"Date\":\"2016-11-15T18:48:48.34\",\"SenderId\":101085,\"LogicbrokerKey\":54569,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041751\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300892,\"Date\":\"2016-11-15T19:13:57.017\",\"SenderId\":101085,\"LogicbrokerKey\":54573,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041752\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300898,\"Date\":\"2016-11-15T19:17:46.677\",\"SenderId\":101085,\"LogicbrokerKey\":54576,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041753\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300902,\"Date\":\"2016-11-15T19:24:47.703\",\"SenderId\":101085,\"LogicbrokerKey\":54587,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041755\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300903,\"Date\":\"2016-11-15T19:24:47.72\",\"SenderId\":101085,\"LogicbrokerKey\":54588,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041756\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300917,\"Date\":\"2016-11-15T19:35:47.723\",\"SenderId\":101085,\"LogicbrokerKey\":54591,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041757\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300918,\"Date\":\"2016-11-15T19:37:47.367\",\"SenderId\":101085,\"LogicbrokerKey\":54592,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041758\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300919,\"Date\":\"2016-11-15T19:37:47.993\",\"SenderId\":101085,\"LogicbrokerKey\":54593,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041759\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300922,\"Date\":\"2016-11-15T19:39:47.073\",\"SenderId\":101085,\"LogicbrokerKey\":54594,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041760\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300926,\"Date\":\"2016-11-15T19:44:06.647\",\"SenderId\":101085,\"LogicbrokerKey\":54595,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041761\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300939,\"Date\":\"2016-11-15T19:48:47.003\",\"SenderId\":101085,\"LogicbrokerKey\":54599,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041765\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300944,\"Date\":\"2016-11-15T19:52:47.863\",\"SenderId\":101085,\"LogicbrokerKey\":54605,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041766\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300962,\"Date\":\"2016-11-15T20:14:47.56\",\"SenderId\":101085,\"LogicbrokerKey\":54608,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041768\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300965,\"Date\":\"2016-11-15T20:16:09.063\",\"SenderId\":101085,\"LogicbrokerKey\":54609,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041769\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300978,\"Date\":\"2016-11-15T20:34:48.987\",\"SenderId\":101085,\"LogicbrokerKey\":54617,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041773\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":300979,\"Date\":\"2016-11-15T20:35:49.407\",\"SenderId\":101085,\"LogicbrokerKey\":54618,\"DocumentType\":\"Order\",\"LinkKey\":\"1611041774\",\"TypeId\":6,\"Level\":\"Alert\",\"Category\":\"Order Sourcing Failure\",\"Summary\":\"Merchant SKU not mapped: 49-98760\",\"Details\":\"We are unable to source your order because the merchant SKU '49-98760' is not matched to a supplier SKU. Please upload an updated matching file and retry this order.\",\"Processed\":false,\"Viewed\":false,\"AdditionalData\":\"{\\\"MerchantSku\\\":\\\"49-98760\\\"}\"},{\"Id\":301438,\"Date\":\"2016-11-16T18:01:04.067\",\"SenderId\":100988,\"ReceiverId\":101085,\"TypeId\":21,\"Level\":\"Alert\",\"Category\":\"Notification\",\"Summary\":\"Error transmitting EDI\",\"Details\":\"Logicbroker encountered an error while importing a document. Please review the details below and resend your document.\\r\\n\\r\\nNo fork route found for Sender= LB101085, Receiver= LB100988, Alias= 850\\r\\n\\r\\n.\",\"Processed\":false,\"Viewed\":false},{\"Id\":301439,\"Date\":\"2016-11-16T18:01:05.567\",\"SenderId\":101085,\"ReceiverId\":100988,\"TypeId\":21,\"Level\":\"Alert\",\"Category\":\"Notification\",\"Summary\":\"Error transmitting EDI\",\"Details\":\"Logicbroker encountered an error while importing a document. Please review the details below and resend your document.\\r\\n\\r\\nNo fork route found for Sender= LB101085, Receiver= LB100988, Alias= 850\\r\\n\\r\\n.\",\"Processed\":false,\"Viewed\":false},{\"Id\":301443,\"Date\":\"2016-11-16T18:15:57.227\",\"SenderId\":100988,\"ReceiverId\":101085,\"TypeId\":21,\"Level\":\"Alert\",\"Category\":\"Notification\",\"Summary\":\"Error transmitting EDI\",\"Details\":\"Logicbroker encountered an error while importing a document. Please review the details below and resend your document.\\r\\n\\r\\nNo fork route found for Sender= LB101085, Receiver= LB100988, Alias= 850\\r\\n\\r\\n.\",\"Processed\":false,\"Viewed\":false},{\"Id\":301444,\"Date\":\"2016-11-16T18:16:04.727\",\"SenderId\":101085,\"ReceiverId\":100988,\"TypeId\":21,\"Level\":\"Alert\",\"Category\":\"Notification\",\"Summary\":\"Error transmitting EDI\",\"Details\":\"Logicbroker encountered an error while importing a document. Please review the details below and resend your document.\\r\\n\\r\\nNo fork route found for Sender= LB101085, Receiver= LB100988, Alias= 850\\r\\n\\r\\n.\",\"Processed\":false,\"Viewed\":false},{\"Id\":301520,\"Date\":\"2016-11-16T20:30:57.82\",\"SenderId\":100988,\"ReceiverId\":101085,\"TypeId\":21,\"Level\":\"Alert\",\"Category\":\"Notification\",\"Summary\":\"Error transmitting EDI\",\"Details\":\"Logicbroker encountered an error while importing a document. Please review the details below and resend your document.\\r\\n\\r\\nNo fork route found for Sender= LB101085, Receiver= LB100988, Alias= 850\\r\\n\\r\\n.\",\"Processed\":false,\"Viewed\":false},{\"Id\":301521,\"Date\":\"2016-11-16T20:31:05.663\",\"SenderId\":101085,\"ReceiverId\":100988,\"TypeId\":21,\"Level\":\"Alert\",\"Category\":\"Notification\",\"Summary\":\"Error transmitting EDI\",\"Details\":\"Logicbroker encountered an error while importing a document. Please review the details below and resend your document.\\r\\n\\r\\nNo fork route found for Sender= LB101085, Receiver= LB100988, Alias= 850\\r\\n\\r\\n.\",\"Processed\":false,\"Viewed\":false},{\"Id\":302279,\"Date\":\"2016-11-18T15:16:19.43\",\"SenderId\":100988,\"ReceiverId\":101085,\"TypeId\":21,\"Level\":\"Alert\",\"Category\":\"Notification\",\"Summary\":\"Error transmitting EDI\",\"Details\":\"Logicbroker encountered an error while importing a document. Please review the details below and resend your document.\\r\\n\\r\\nNo fork route found for Sender= LB101085, Receiver= LB100988, Alias= 850\\r\\n\\r\\n.\",\"Processed\":false,\"Viewed\":false},{\"Id\":302280,\"Date\":\"2016-11-18T15:16:27.853\",\"SenderId\":101085,\"ReceiverId\":100988,\"TypeId\":21,\"Level\":\"Alert\",\"Category\":\"Notification\",\"Summary\":\"Error transmitting EDI\",\"Details\":\"Logicbroker encountered an error while importing a document. Please review the details below and resend your document.\\r\\n\\r\\nNo fork route found for Sender= LB101085, Receiver= LB100988, Alias= 850\\r\\n\\r\\n.\",\"Processed\":false,\"Viewed\":false},{\"Id\":302292,\"Date\":\"2016-11-18T15:31:09.507\",\"SenderId\":100988,\"ReceiverId\":101085,\"TypeId\":21,\"Level\":\"Alert\",\"Category\":\"Notification\",\"Summary\":\"Error transmitting EDI\",\"Details\":\"Logicbroker encountered an error while importing a document. Please review the details below and resend your document.\\r\\n\\r\\nNo fork route found for Sender= LB101085, Receiver= LB100988, Alias= 850\\r\\n\\r\\n.\",\"Processed\":false,\"Viewed\":false},{\"Id\":302293,\"Date\":\"2016-11-18T15:31:10.46\",\"SenderId\":101085,\"ReceiverId\":100988,\"TypeId\":21,\"Level\":\"Alert\",\"Category\":\"Notification\",\"Summary\":\"Error transmitting EDI\",\"Details\":\"Logicbroker encountered an error while importing a document. Please review the details below and resend your document.\\r\\n\\r\\nNo fork route found for Sender= LB101085, Receiver= LB100988, Alias= 850\\r\\n\\r\\n.\",\"Processed\":false,\"Viewed\":false}],\"TotalPages\":1}}"}],"_postman_id":"cd1464c1-e97e-4704-9152-61d3c8c17b6e"},{"name":"Step 3: Update Event as Processed","id":"f765e484-6642-4a40-bf57-9b786a22012d","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{{EventDetail}}"},"url":"https://stage.commerceapi.io/api/v1/ActivityEvents/:EventId?subscription-key={{subscription-key}}","description":"<p>After the event is picked up it is best to update the processed flag for that event to ensure that the event isn't processed again. To do this just take the response from the last step and just update the <strong>Processed</strong> field to <strong>true</strong>. Below is a sample model of the body to be submitted. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"Id\": 0,\n  \"Date\": \"2016-11-18T14:48:39.978Z\",\n  \"SenderId\": 0,\n  \"ReceiverId\": 0,\n  \"LogicbrokerKey\": 0,\n  \"DocumentType\": \"string\",\n  \"LinkKey\": \"string\",\n  \"TypeId\": 0,\n  \"Level\": \"string\",\n  \"Category\": \"string\",\n  \"Summary\": \"string\",\n  \"Details\": \"string\",\n  \"Processed\": true,\n  \"Viewed\": true,\n  \"AdditionalData\": \"string\"\n}\n</code></pre><br />\n### Recommended Parameters\nThese parameters are recommended and used for the testing scenario, for the full list see the [API reference](https://stage.commerceapi.io/swagger/ui/index#!/ActivityEvent/ActivityEvent_UpdateActivityEvent).\n\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>EventId</b><br /></td><td>This will be the <b>id </b>provided from the previous response body. It is the unique identifier for this event.  </td><td>integer</td></tr></tbody></table><p><b><br /></b></p>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>From the previous step, the response body was updated and saved with the <strong>Processed</strong> flag updated to <strong>true</strong>. The global variable is <strong>{{EventDetail}}</strong> and will be defaulted as the <strong>Body</strong>. In addition, the <strong>EventId</strong> from the previous step was saved as a global variable <strong>{{EventID}}</strong>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","ActivityEvents",":EventId"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"EventId","type":"any","value":"{{EventID}}","key":"EventId"},{"type":"any","value":"{"},{"type":"any","value":"{","key":1},{"type":"any","value":"E","key":2},{"type":"any","value":"v","key":3},{"type":"any","value":"e","key":4},{"type":"any","value":"n","key":5},{"type":"any","value":"t","key":6},{"type":"any","value":"I","key":7},{"type":"any","value":"D","key":8},{"type":"any","value":"}","key":9},{"type":"any","value":"}","key":10}]}},"response":[{"id":"050d0eee-925a-4242-a4f7-09fce03efbf0","name":"Update Status","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{{EventDetail}}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/ActivityEvents/:EventId?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","ActivityEvents",":EventId"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"EventId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 21 Nov 2016 21:31:11 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Body\":268137}"}],"_postman_id":"f765e484-6642-4a40-bf57-9b786a22012d"},{"name":"Create an Activity Event (Optional)","id":"e133789b-926b-4f65-b798-fc5badef67c7","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"ReceiverId\": {{ReceiverCompanyID}},\r\n  \"LogicbrokerKey\": {{EventLogicbrokerKey}},\r\n  \"DocumentType\": \"Order\",\r\n  \"TypeId\": 30,\r\n  \"Level\": \"Alert\",\r\n  \"Category\": \"Failed Document Alert\",\r\n  \"Summary\": \"Failed Orders\",\r\n  \"Details\": \"PO# 101000 was marked as failed\",\r\n  \"Processed\": false,\r\n  \"Viewed\": false,\r\n  \"AdditionalData\": \"Orderline.LineNumber is mandatory\"\r\n}"},"url":"https://stage.commerceapi.io/api/v1/ActivityEvents?subscription-key={{subscription-key}}","description":"<p>If you are pulling documents from the logicbroker system, and when pulling them the process fails or something fails to process to your system, it would be best practice to generate an event. This way the associated trading partner can view any issues and correct them. \n<br />\n<br /></p>\n<h3 id=\"recommended-parameters\">Recommended Parameters</h3>\n<p>These parameters are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#!/ActivityEvent/ActivityEvent_CreateEvent\">API reference</a>.</p>\n<p><br /></p><table><tbody><tr><td><b>Field Name</b></td><td><b>Description</b></td><td><b>DataType</b></td></tr><tr><td>ReceiverID</td><td>The companyID of the partner who sent the document. This can be either supplier or retailer<br /></td><td>integer</td></tr><tr><td>LogicbrokerKey<br /></td><td>This is the unique Id for the document that you are creating an event for.<br /></td><td>integer<br /></td></tr><tr><td>DocumentType<br /></td><td>Here is a list of document types to use: (<b>Order, POAck, AdvanceShipmentNotice, Invoice, Inventory, Return</b>)<br /></td><td>string<br /></td></tr><tr><td>TypeId<br /></td><td>Id that describes the type of event. This will enable the partner receiving the event to receive notification. Please see list of events below and in this article.<br /></td><td>integer<br /></td></tr><tr><td>Level<br /></td><td>You should use the following options: (<b>Alert, Info</b>)<br /></td><td>string<br /></td></tr><tr><td>Category<br /></td><td>This value should match the table below with the Ids<br /></td><td>string<br /></td></tr><tr><td>Summary<br /></td><td>should provide a brief description of the error or event.<br /></td><td>string<br /></td></tr><tr><td>Details<br /></td><td>Should provide details, specific ot what the issue. Example: \"Unable to import inventory file '20161122_469.e22i'. \"<br /></td><td>string<br /></td></tr><tr><td>Processed<br /></td><td>Will be used as a flag to indicate event was picked up and processed<br /></td><td>boolean<br /></td></tr><tr><td>Viewed<br /></td><td>Will be used as a flag to indicate the event was viewed and acknowledged<br /></td><td>boolean<br /></td></tr><tr><td>AdditionalData<br /></td><td>This is where all the technical details will be added. This can be logging information and other additional details.<br /></td><td>string<br /></td></tr></tbody></table><p><br /></p>\n\n<p>Here is a list of event Ids and their respective categories. This should match the <strong>TypeId</strong> and <strong>Category</strong> fields as shown above. For more details on what notifications you or your partner can subscribe to <a href=\"http://help.logicbroker.com/hc/en-us/articles/209725223-Default-Notifications\">please see this article</a>.  </p>\n<div>\n\n<table>\n <tbody><tr>\n  <td>\n  <p>Id</p>\n  </td>\n  <td>\n  <p>Event Category</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>0</p>\n  </td>\n  <td>\n  <p>Uncategorized Exception</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>1</p>\n  </td>\n  <td>\n  <p>Unhandled Exception</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>2</p>\n  </td>\n  <td>\n  <p>Failed Functional Acknowledgement</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>3</p>\n  </td>\n  <td>\n  <p>New Purchase Order Notification</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>4</p>\n  </td>\n  <td>\n  <p>New Shipment Notification</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>5</p>\n  </td>\n  <td>\n  <p>External File Translation Failure</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>6</p>\n  </td>\n  <td>\n  <p>Order Sourcing Failure</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>7</p>\n  </td>\n  <td>\n  <p>Workflow Failed</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>8</p>\n  </td>\n  <td>\n  <p>Duplicate PO</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>9</p>\n  </td>\n  <td>\n  <p>Missing Tracking Numbers</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>10</p>\n  </td>\n  <td>\n  <p>SKU Not Found</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>11</p>\n  </td>\n  <td>\n  <p>No matching document found</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>12</p>\n  </td>\n  <td>\n  <p>Failed Login</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>13</p>\n  </td>\n  <td>\n  <p>Update Shipping Failure</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>14</p>\n  </td>\n  <td>\n  <p>CRM Notification</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>15</p>\n  </td>\n  <td>\n  <p>Tracking Upload Successful</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>16</p>\n  </td>\n  <td>\n  <p>Tracking Upload failed</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>17</p>\n  </td>\n  <td>\n  <p>Product Upload Successful</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>18</p>\n  </td>\n  <td>\n  <p>Product Upload failed</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>19</p>\n  </td>\n  <td>\n  <p>Monitoring Alert</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>20</p>\n  </td>\n  <td>\n  <p>New Invoice Notification</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>21</p>\n  </td>\n  <td>\n  <p>EDI Transmission Failure</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>22</p>\n  </td>\n  <td>\n  <p>Webhook Failure</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>23</p>\n  </td>\n  <td>\n  <p>Monitoring Report</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>24</p>\n  </td>\n  <td>\n  <p>Monthly Document Count</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>25</p>\n  </td>\n  <td>\n  <p>Monthly Order Count</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>26</p>\n  </td>\n  <td>\n  <p>Overdue Acknowledgment</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>27</p>\n  </td>\n  <td>\n  <p>Overdue Document</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>28</p>\n  </td>\n  <td>\n  <p>Manual Status Update</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>29</p>\n  </td>\n  <td>\n  <p>Order Cancellation</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>30</p>\n  </td>\n  <td>\n  <p>Failed Document Alert</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>31</p>\n  </td>\n  <td>\n  <p>FTP Activity</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>32</p>\n  </td>\n  <td>\n  <p>External XML Alert</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>33</p>\n  </td>\n  <td>\n  <p>Attachment Created</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>34</p>\n  </td>\n  <td>\n  <p>Attachment Acknowledged</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>35</p>\n  </td>\n  <td>\n  <p>Status Update</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>36</p>\n  </td>\n  <td>\n  <p>Queue\n  Job</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>37</p>\n  </td>\n  <td>\n  <p>Unknown EDI Document</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>38</p>\n  </td>\n  <td>\n  <p>Inventory Failure</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>39</p>\n  </td>\n  <td>\n  <p>Inventory Notification</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>40</p>\n  </td>\n  <td>\n  <p>Inventory Update Report</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>41</p>\n  </td>\n  <td>\n  <p>Inventory Exception Report</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>42</p>\n  </td>\n  <td>\n  <p>System Status Normal</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>43</p>\n  </td>\n  <td>\n  <p>System Status Warning</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>44</p>\n  </td>\n  <td>\n  <p>System Status Error</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>45</p>\n  </td>\n  <td>\n  <p>Overdue Inventory</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>46</p>\n  </td>\n  <td>\n  <p>New Order Acknowledgement</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>47</p>\n  </td>\n  <td>\n  <p>Document Aging Report</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>48</p>\n  </td>\n  <td>\n  <p>Flat File Import Notification</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>49</p>\n  </td>\n  <td>\n  <p>Flat File Import Failure</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>50</p>\n  </td>\n  <td>\n  <p>Manual Document Update</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>51</p>\n  </td>\n  <td>\n  <p>Validation Failure</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>52</p>\n  </td>\n  <td>\n  <p>New Return Notification</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>53</p>\n  </td>\n  <td>\n  <p>Return Upload Failed</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>54</p>\n  </td>\n  <td>\n  <p>Acknowledgement Upload Failed</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>55</p>\n  </td>\n  <td>\n  <p>Login</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>56</p>\n  </td>\n  <td>\n  <p>Partner Notification</p>\n  </td>\n </tr>\n <tr>\n  <td>\n  <p>57</p>\n  </td>\n  <td>\n  <p>API Error</p>\n  </td>\n </tr>\n</tbody></table>\n\n</div>\n\n<h3 id=\"testing-information\">Testing Information</h3>\n<p>In the body a generic sample is provided. This would be an ideal entry. Remember the details that are created in the event should be designed to help you, your partner, or logicbroker support troubleshoot any issues with a document.</p>\n","urlObject":{"protocol":"https","path":["api","v1","ActivityEvents"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"c402af4d-3b22-4531-91f4-e7ab1918de56","name":"create event","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"Id\": 0,\r\n  \"Date\": \"2016-11-18T14:48:39.977Z\",\r\n  \"SenderId\": 0,\r\n  \"ReceiverId\": 0,\r\n  \"LogicbrokerKey\": 0,\r\n  \"DocumentType\": \"string\",\r\n  \"LinkKey\": \"string\",\r\n  \"TypeId\": 0,\r\n  \"Level\": \"string\",\r\n  \"Category\": \"string\",\r\n  \"Summary\": \"string\",\r\n  \"Details\": \"string\",\r\n  \"Processed\": true,\r\n  \"Viewed\": true,\r\n  \"AdditionalData\": \"string\"\r\n}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/ActivityEvents?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","ActivityEvents"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":""},{"name":"Content-Length","key":"Content-Length","value":"109","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 21 Nov 2016 22:02:58 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":""},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"201\",\"Message\":\"Created\",\"Body\":\"Event created, it may take a few seconds to appear in the system.\"}"}],"_postman_id":"e133789b-926b-4f65-b798-fc5badef67c7"}],"id":"f129c6a4-e0a6-4e9a-aa60-862fff289df2","description":"<p>For monitoring the processing of all documents, logicbroker will generate events for failed documents or configured reports. These events can be viewed in the portal and notifications can be received via email. For more details on the process for configuring event notification <a href=\"http://help.logicbroker.com/hc/en-us/articles/210718383-Getting-Started-Subscribing-to-Notifications\">see this article</a>.\n<br />\n<br />\nIn this activity event and error handling flow, we will be searching for documents that are in the <strong>Failed (1200)</strong> status and will be pulling the event details for them. For all documents that are in the failed status they will have an event that will provide details to the failure.</p>\n","_postman_id":"f129c6a4-e0a6-4e9a-aa60-862fff289df2"},{"name":"7. Setting up Webhooks","item":[{"name":"Create a New Webhook","id":"dc2f347c-55da-4e57-95b0-9a1fce65bcdc","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"Address\": \"http://requestb.in/w2dfr1w2\",\r\n  \"Topic\": \"Order/New\",\r\n  \"Enabled\": true,\r\n  \"Format\": \"JSON\"\r\n}"},"url":"https://stage.commerceapi.io/api/v1/Webhooks?subscription-key={{subscription-key}}","description":"<p>To configure the webhooks you will need to post your request to this endpoint setting up one of the topics listed above.\n<br /></p>\n<h3 id=\"recommended-request\">Recommended Request</h3>\n<p>These fields are recommended and used for the testing scenario, for the full list see the <a href=\"https://stage.commerceapi.io/swagger/ui/index#/Webhook\">API reference</a>. </p>\n<table><tbody><tr><td><b>Field</b></td><td><div><b><div><b>Description</b></div></b><br /></div></td><td><b>DataType</b></td></tr><tr><td><b>Address</b><br /></td><td>This is the address the hook will POST to.</td><td>string</td></tr><tr><td><b>Topic</b></td><td>This is the list of events that will be configured. See list of topics in section above.</td><td>string</td></tr><tr><td><b>Format</b></td><td>Use \"JSON\" or \"XML\"</td><td>string</td></tr><tr><td><b>Enabled</b></td><td>true to enable and false to disable the hook.</td><td>boolean</td></tr><tr><td><b>SharedSecret</b></td><td>Used to sign events so the request can be verified. </td><td>string</td></tr></tbody></table><p><b><br /></b></p>","urlObject":{"protocol":"https","path":["api","v1","Webhooks"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"0e8b9e50-836e-47b3-85b5-5d2e33996466","name":"PostWebhookResponse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"Address\": \"http://requestb.in/w2dfr1w2\",\r\n  \"Topic\": \"Order/New\",\r\n  \"Enabled\": true,\r\n  \"Format\": \"JSON\"\r\n}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Webhooks?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Webhooks"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Length","key":"Content-Length","value":"44","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Mon, 15 May 2017 20:20:43 GMT","description":"The date and time that the message was sent"},{"name":"Location","key":"Location","value":"https://stage.commerceapi.io/api/v1/Webhooks/15","description":"Used in redirection, or when a new resource has been created."},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"201\",\"Message\":\"Created\",\"Body\":15}"}],"_postman_id":"dc2f347c-55da-4e57-95b0-9a1fce65bcdc"},{"name":"Get List of Webhooks","id":"ec2d346d-acd2-40c5-a7a0-5764d45fadfe","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v1/Webhooks?subscription-key={{subscription-key}}","description":"<p>Use this endpoint to verify that the webhooks you have setup are correct.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Webhooks"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[]}},"response":[{"id":"22326032-59d4-41a8-9bd8-34bfd8ed4fc1","name":"WebhookListResponse","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/Webhooks?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Webhooks"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Tue, 16 May 2017 19:13:57 GMT","description":"The date and time that the message was sent"},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Body\":[{\"Id\":15,\"Format\":\"json\",\"Address\":\"http://requestb.in/w2dfr1w2\",\"Topic\":\"Order/New\",\"Enabled\":true,\"CreatedAt\":\"2017-05-15T20:20:43.6955944+00:00\",\"SharedSecret\":\"5E67273A-5F3F-4896-8CD6-7491CFEC8B14\"}]}"}],"_postman_id":"ec2d346d-acd2-40c5-a7a0-5764d45fadfe"},{"name":"Delete a Webhook","id":"8ef35f6e-dd30-4282-96e4-a79e980007f2","request":{"method":"DELETE","header":[],"url":"https://stage.commerceapi.io/api/v1/Webhooks/:WebhookId?subscription-key={{subscription-key}}","description":"<p>Use this to remove a Webhook. Replace \":WebhookId\" with the ID provided by the Get List of Webhooks.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Webhooks",":WebhookId"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"WebhookId","type":"any","value":"","key":"WebhookId"}]}},"response":[],"_postman_id":"8ef35f6e-dd30-4282-96e4-a79e980007f2"},{"name":"Update a Webhook","id":"9f9bc25f-43a5-4819-b6ba-8bbd88303bd0","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Id\": 15,\n    \"Format\": \"json\",\n    \"Address\": \"http://requestb.in/1b5qk5v1\",\n    \"Topic\": \"Order/New\",\n    \"Enabled\": true,\n    \"SharedSecret\": \"5E67273A-5F3F-4896-8CD6-7491CFEC8B14\"\n\t\n}"},"url":"https://stage.commerceapi.io/api/v1/Webhooks/:WebhookId?subscription-key={{subscription-key}}","description":"<p>Use this endpoint to update your webhook. Use the WebhookId from the Get List of Webhooks step.</p>\n","urlObject":{"protocol":"https","path":["api","v1","Webhooks",":WebhookId"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"WebhookId","type":"any","value":"{{WebhookId}}","key":"WebhookId"},{"type":"any","value":"{"},{"type":"any","value":"{","key":1},{"type":"any","value":"W","key":2},{"type":"any","value":"e","key":3},{"type":"any","value":"b","key":4},{"type":"any","value":"h","key":5},{"type":"any","value":"o","key":6},{"type":"any","value":"o","key":7},{"type":"any","value":"k","key":8},{"type":"any","value":"I","key":9},{"type":"any","value":"d","key":10},{"type":"any","value":"}","key":11},{"type":"any","value":"}","key":12}]}},"response":[{"id":"470630f0-5e60-4106-a12b-d952aa3a57fc","name":"updatewebhookfailed","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n    \"Id\": 15,\n    \"Format\": \"json\",\n    \"Address\": \"http://requestb.in/1b5qk5v1\",\n    \"Topic\": \"Order/New\",\n    \"Enabled\": true,\n    \"SharedSecret\": \"5E67273A-5F3F-4896-8CD6-7491CFEC8B14\"\n\t\n}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Webhooks/:WebhookId?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Webhooks",":WebhookId"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"key":"WebhookId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":""},{"name":"Content-Length","key":"Content-Length","value":"136","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Tue, 16 May 2017 19:24:45 GMT","description":""},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":""},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":""}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"400\",\"Message\":\"Bad Request\",\"Body\":[{\"Parameter\":\"WebhookId\",\"Errors\":[\"The value '{{WebhookId}}' is not valid for Int32.\"]}]}"},{"id":"d8981e05-1b4f-4ad7-aa42-dff513424909","name":"SuccessUpdateWebhook","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n    \"Id\": 15,\n    \"Format\": \"json\",\n    \"Address\": \"http://requestb.in/1b5qk5v1\",\n    \"Topic\": \"Order/New\",\n    \"Enabled\": true,\n    \"SharedSecret\": \"5E67273A-5F3F-4896-8CD6-7491CFEC8B14\"\n\t\n}"},"url":{"raw":"https://stage.commerceapi.io/api/v1/Webhooks/15?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Webhooks","15"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"*","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Tue, 16 May 2017 19:24:14 GMT","description":"The date and time that the message was sent"},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Body\":15}"}],"_postman_id":"9f9bc25f-43a5-4819-b6ba-8bbd88303bd0"},{"name":"Test a Webhook","id":"0f6fe9e9-f0ec-4f32-8aef-d3a3fe36533b","request":{"method":"GET","header":[],"url":"https://stage.commerceapi.io/api/v1/Webhooks/:WebhookId/Test?subscription-key={{subscription-key}}","description":"<p>This will be used to test to make sure your endpoint is setup correctly and can receive messages. Below is an example of the message that would be sent through the test. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\"Code\":null,\"Message\":null,\"Body\":\"This is a sample webhook body.\"}\n</code></pre>","urlObject":{"protocol":"https","path":["api","v1","Webhooks",":WebhookId","Test"],"host":["stage","commerceapi","io"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}],"variable":[{"id":"WebhookId","type":"any","value":"","key":"WebhookId"}]}},"response":[{"id":"384d7b02-cef5-495a-a5dc-955ba3dbe15d","name":"successfultest","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.commerceapi.io/api/v1/Webhooks/15/Test?subscription-key={{subscription-key}}","protocol":"https","host":["stage","commerceapi","io"],"path":["api","v1","Webhooks","15","Test"],"query":[{"key":"subscription-key","value":"{{subscription-key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"private","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Tue, 16 May 2017 19:25:50 GMT","description":"The date and time that the message was sent"},{"name":"Server","key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server"},{"name":"Strict-Transport-Security","key":"Strict-Transport-Security","value":"max-age=31536000","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-AspNet-Version","key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header"},{"name":"X-Logicbroker-Request-Limit","key":"X-Logicbroker-Request-Limit","value":"99","description":"Custom header"},{"name":"X-Powered-By","key":"X-Powered-By","value":"ASP.NET","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"Code\":\"200\",\"Message\":\"Success\",\"Body\":\"Webhook test complete, endpoint responded with success status.\"}"}],"_postman_id":"0f6fe9e9-f0ec-4f32-8aef-d3a3fe36533b"}],"id":"4ca25f06-cb65-4409-8b2d-213c39c37308","description":"<h3 id=\"overview\">Overview</h3>\n<p>Instead of polling our API to look for a new update or new document, you can setup a webhook which will POST to an HTTP(S) endpoint that you configure. \n<br />\n<br /></p>\n<h3 id=\"webhook-events\">Webhook Events</h3>\n<p>We have 4 different topics that can be setup. These are events will trigger when new documents are received for you company.</p>\n<br />\n**List of Topics**\n<br />\n\n<p><strong>Acknowledgement/New</strong> Will POST an Acknowledgement when one is received in Logicbroker.</p>\n<p><strong>Shipment/New</strong> Will POST a Shipment when one is received in Logicbroker.</p>\n<p><strong>Invoice/New</strong> Will POST an Invoice when one is received in Logicbroker.</p>\n<p><strong>Order/New</strong> Will POST an Order when one is received in Logicbroker.\n<br /></p>\n<p>A webhook is successfully processed when logicbroker receives a 200 Status Code response. At that point the document will be moved to it's standard status. \n<br />\n<br />\nFor Orders this will be status <strong>Ready to Acknowledge (150)</strong>\n<br />\nFor Acknowledgements this will be status <strong>Processing (200)</strong>\n<br />\nFor Shipments this will be status <strong>Processing (200)</strong>\n<br />\nFor Invoices this will be status <strong>Processing (200)</strong>\n<br />\n<br />\nIf a code is received that is not 200 then the document will move to <strong>Failed (1200)</strong> status and an event will be created with details.\n<br />\n<br /></p>\n<h3 id=\"headers\">Headers</h3>\n<p>When receiving your webhook request the signature will be supplied with the following header data.\n<br />\n<br />\n<strong>Key:</strong> x-Logicbroker-Signature\n<br />\n<strong>Value:</strong> HMAC SHA256</p>\n","_postman_id":"4ca25f06-cb65-4409-8b2d-213c39c37308"}]}