All Inventory Request


To receive live, dynamic inventory counts of the entire product list, submit an inforequest:
<?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 the WeFulfillIT merchant ID.
<PASSWORD>your password</PASSWORD>Enter the password used to log into the MIS (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>1441-Item1-A</SKU>
<TOTAL>21</TOTAL>
</ITEM>
<ITEM>
<SKU>1441-Item1-B</SKU>
<TOTAL>10</TOTAL>
</ITEM>
<ITEM>
<SKU>1441-2137</SKU>
<TOTAL>0</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>