Single/List Inventory Request


To receive a live inventory count on a single or set of product's currently in inventory, submit the following inforequest:
<?xml version="1.0" encoding="iso-8859-1"?>
<INFOREQUEST>
<TYPE>INVENTORY</TYPE>
<MERCHANTID>1441</MERCHANTID>
<PASSWORD>Password</PASSWORD>
<PRODUCT>
<SKU>1441-Item1-A</SKU>
</PRODUCT>
<PRODUCT>
<SKU>1441-Item2-B</SKU>
</PRODUCT>
</INFOREQUEST>

The XML to post for a single/list 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 inforequest 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).
<PRODUCT>
<SKU>full product ID</SKU> The merchant ID must be included for this request to process.
</PRODUCT>

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-Item2-B</SKU>
<TOTAL>10</TOTAL>
</ITEM>

</INVENTORY>