Currently we directly integrate with several shopping carts (see the complete list here ). For stores on carts that we do not currently integrate into, you can still use OrderCup to manage and ship your orders. You can do this by creating a standalone store in OrderCup and importing the orders in XML format.

 

Creating a Standalone store


To create a Standalone store in OrderCup, use the New Store wizard:

  1. On the Stores tab, click the New Store button.
  2. Select Standalone Shopping Cart from the drop-down list of supported carts
  3. Follow the wizard to define and set up your store for that cart

Note: You can have multiple stores for any given cart or across the supported carts.

 

Uploading orders


To upload orders via an XML file:

  1. Go to Orders tab and then click the  on "More" button and then chooses  Import Orders (XML) form list box to upload the XML file

     


XML format for importing orders


The XML format for importing orders is shown below:

<?xml version="1.0" encoding="UTF-8"?>
  <orders type="array">
    <order>
    <order-id type="integer">1005</order-id>
    <created-at type="datetime">2008-01-10T11:00:00-05:00</created-at>
    <total-discounts type="decimal">0.0</total-discounts>
    <updated-at type="datetime">2008-01-10T11:00:00-05:00</updated-at>
    <total-price type="decimal">210.94</total-price>
    <total-line-items-price type="decimal">199.0</total-line-items-price>
    <note nil="true"></note>
    <total-tax type="decimal">11.94</total-tax>
    <status>Active</status>
    <email>bob.norman@hostmail.com</email>
    <shipping-address>
      <company nil="true"></company>
      <city>Louisville</city>
      <address1>Chestnut Street 12</address1>
      <zip>40201</zip>
      <address2></address2>
      <country>United States</country>
      <phone>555-625-1212</phone>
      <last-name>Hill</last-name>
      <province>Kentucky</province>
      <first-name>Bob</first-name>
      <country-code>US</country-code>
      <province-code>KY</province-code>
    </shipping-address>
    <line-items type="array">
      <line-item>
        <price type="decimal">199.0</price>
        <title>IPod Nano - 8gb</title>
        <quantity type="integer">1</quantity>
        <weight unit="pounds" type="decimal">200</weight>
        <sku>IPOD2008GREEN</sku>
        <name>IPod Nano - 8gb - green</name>
      </line-item>
      <line-item>
        <price type="decimal">199.0</price>
        <title>IPod Nano - 8gb</title>
        <quantity type="integer">1</quantity>
        <weight unit="pounds" type="decimal">200</weight>
        <sku>IPOD2008BLACK</sku>
        <name>IPod Nano - 8gb - black</name>
      </line-item>
    </line-items>
    <shipping-lines type="array">
      <shipping-line>
        <price type="decimal">0.0</price>
        <title>Free Shipping</title>
      </shipping-line>
    </shipping-lines>
    <billing-address>
      <company nil="true"></company>
      <city>Louisville</city>
      <address1>Chestnut Street 12</address1>
      <zip>40202</zip>
      <address2></address2>
      <country>United States</country>
      <phone>555-625-1212</phone>
      <province>Kentucky</province>
      <first-name>Bob</first-name>
      <last-name>Hill</last-name>
      <country-code>US</country-code>
      <province-code>KY</province-code>
    </billing-address>
    </order>
  </orders>