Skip to content

Import Inventory Updates to Rithum

This task will update inventory in Rithum, based on an XML file.

Settings

Connection

Required
The Rithum connection to use. See the Connecting to Rithum article if you require more information on how to create/manage connections.

Input File

Required
The input XML file containing the list of inventory items to update.

Output File

Required
The file to write the results of the update to.

Page Size

Optional
The amount of inventory items to upload per update call.

Zynk Settings

See Common Task Settings.

Examples

Sample input file:

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfInventoryItemQuantityAndPrice 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <InventoryItemQuantityAndPrice>
    <Sku xmlns="http://api.channeladvisor.com/webservices/">Test1</Sku>
    <DistributionCenterCode xmlns="http://api.channeladvisor.com/webservices/">Beverley</DistributionCenterCode>
    <Quantity xmlns="http://api.channeladvisor.com/webservices/">120</Quantity>
    <PriceInfo xmlns="http://api.channeladvisor.com/webservices/">
      <RetailPrice>169.99</RetailPrice>
    </PriceInfo>
  </InventoryItemQuantityAndPrice>
</ArrayOfInventoryItemQuantityAndPrice>