XML Developer Information

WeFulfillIT.com provides information to shopping carts using XML technology. The primary location of this information script can be found at http://mis.wefulfillit.com/inforequest.asp. This is the URL to post the XML requests. Depending on the request, information is fed back in XML format.

 

Inventory XML Request

In order to receive live, dynamic inventory counts of the merchant product list, submit a inventory request. Sample information in the posting xml looks something like this:

<?xml version="1.0" encoding="iso-8859-1"?>
<INFOREQUEST>
<TYPE>INVENTORY</TYPE>
<MERCHANTID>1441</MERCHANTID>
<PASSWORD>Password</PASSWORD>
</INFOREQUEST>

The XML to post for a Inventory Count should consist of

<INFOREQUEST></INFOREQUEST> is the parent tag of the XML file and contains the entire contents of the inventory request XML.
<TYPE>INVENTORY</TYPE> Specifies the info-request type. In this case, it is INVENTORY.
<MERCHANTID>1441</MERCHANTID> Identify your WeFulfuillIT.com merchant ID number.
<PASSWORD>your password</PASSWORD>Enter the password that you use to login in to the Merchant Information Station.

After submitting the Inventory Request XML, the data returned is a detailed list of current SKU's and the associated count for that SKU:

<?xml version='1.0' encoding='iso-8859-1'?>
<INVENTORY>
<ITEM>
<SKU>58499</SKU>
<TOTAL>0</TOTAL>
</ITEM>
<ITEM>
<SKU>1441-2136</SKU>
<TOTAL>0</TOTAL>
</ITEM>
<ITEM>
<SKU>1441-2137</SKU>
<TOTAL>8</TOTAL>
</ITEM>
<ITEM>
<SKU>1441-111-1</SKU>
<TOTAL>19</TOTAL>
</ITEM>
<ITEM>
<SKU>1441-111-2</SKU>
<TOTAL>33</TOTAL>
</ITEM>
<ITEM>
<SKU>1441-111-4</SKU>
<TOTAL>22</TOTAL>
</ITEM>
</INVENTORY>


Tracking Information Request
To receive tracking information back from the WeFulfillIT.com server, submit a tracking request:

<?xml version="1.0" encoding="iso-8859-1"?>
<INFOREQUEST>
<TYPE>TRACKING</TYPE>
<MERCHANTID>1117</MERCHANTID>
<PASSWORD>Minasa</PASSWORD>
<CUSTOMERID>50415</CUSTOMERID>
<ORDERNO>P15442</ORDERNO>
</INFOREQUEST>

Submitting the XML with your merchant ID, password and order information, you will receive the tracking data for that order:

<?xml version='1.0' encoding='iso-8859-1'?>
<TRACKING>
   <SHIPDATE>10/11/07</SHIPDATE>
   <TRACKINGNO1>042141230203338</TRACKINGNO1>
</TRACKING>
           

This automation allows for dynamic information retrieval to better serve your customer base. New features are always being added to the Merchant Information Station, so check back with us to see new features that will help you streamline your business.