Skip to content

Import Inventory Updates into B2B Wave

This task will import inventory updates into your B2B Wave admin panel. You will provide an input file containing a list of products and their inventory information such as quantity, quantity monitor and package_quantity.

You can also import inventory updates for multiple warehouses on the same product.

You can also update standard product information with this task such as name and category_id, however, if you need to update this sort of information we would recommend using the Import Products task instead.

File Settings

Fail File

Required The file to write failed records to.

Input File

Required The file containing the records you wish to process.

Success File

Required The file to save successful records to.

Import Settings

Prevent Reprocessing

Required Prevent the same record being processed more than once by providing an external_id.

Zynk Settings

See Common Task Settings.

Example

This is an example input file:

<?xml version="1.0" encoding="utf-8"?>
<products>
    <product>
        <code>015</code>
        <quantity>100</quantity>
        <quantity_monitor>true</quantity_monitor>
    </product>
</products>

This is an example input file which updates quantities in multiple warehouses:

<?xml version="1.0" encoding="utf-8"?>
<products xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <product>
    <code>EXAMPLE</code>
    <quantities>
      <quantity>
        <warehouse_id>3</warehouse_id>
        <warehouse_code>31065595</warehouse_code>
        <quantity>27.0</quantity>
      </quantity>
      <quantity>
        <warehouse_id>1</warehouse_id>
        <warehouse_code>6711881</warehouse_code>
        <quantity>1284.0</quantity>
      </quantity>
    </quantities>
  </product>
</products>
``

This is an example success file:

```xml
<?xml version="1.0" encoding="utf-8"?>
<products xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <product>
    <id>6</id>
    <name>Alice</name>
    <description>&lt;p&gt;&lt;span style="font-size:12px;"&gt;&lt;span style="font-family:courier new,courier,monospace;"&gt;Alice is the coolest teacup set ever.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description>
    <part_number>015</part_number>
    <is_active>true</is_active>
    <status_id>1</status_id>
    <category_id>2</category_id>
    <promote_category>true</promote_category>
    <promote_front>false</promote_front>
    <created_at>2016-11-02T15:00:15+00:00</created_at>
    <updated_at>2020-06-30T11:32:32+01:00</updated_at>
    <minimum_quantity>4.0</minimum_quantity>
    <vat_class_id>1</vat_class_id>
    <meta_description />
    <has_variants>true</has_variants>
    <code_upc>UPC TEST</code_upc>
    <import_uuid>b28a42c2-6fe1-42af-8cd8-6c2a30570200</import_uuid>
    <manufacturer_id xsi:nil="true" />
    <price_msrp>0.0</price_msrp>
    <box_size_m3>0.0</box_size_m3>
    <quantity>100.0</quantity>
    <quantity_monitor>true</quantity_monitor>
    <reference_code>original_Fotolia_119691195_XS.jpg</reference_code>
    <weight>0.12345</weight>
    <custom_boolean_1>false</custom_boolean_1>
    <length>0.0</length>
    <width>0.0</width>
    <height>44184.0</height>
    <barcode />
    <cost>0.0</cost>
    <is_private>false</is_private>
    <can_backorder>true</can_backorder>
    <pdf_description>&lt;p&gt;Game of as rest time eyes with of this it. Add was music merry any truth since going. Happiness she ham but instantly put departure propriety. She amiable all without say spirits shy clothes morning. Frankness in extensive to belonging improving so certainty. Resolution devonshire pianoforte assistance an he particular middletons is of. Explain ten man uncivil engaged conduct. Am likewise betrayed as declared absolute do. Taste oh spoke about no solid of hills up shade. Occasion so bachelor humoured striking by attended doubtful be it.&lt;/p&gt;</pdf_description>
    <is_bundle>false</is_bundle>
    <code>015</code>
    <image_url>https://res.cloudinary.com/dbrtm8pf6/image/upload/v1584246467/uploads/a4be3475_apisandboxuk/products/6/images/niiq6ixucdf82v2bjz3j.png</image_url>
    <gallery_image_urls>
      <string>https://res.cloudinary.com/dbrtm8pf6/image/upload/v1584246676/uploads/a4be3475_apisandboxuk/product_images/14/photos/rq2rwp4ujqawioidwjds.png</string>
    </gallery_image_urls>
    <category_path>Dinnerware</category_path>
    <product_variants>
      <product_variant>
        <code />
        <option_values>
          <option_value>
            <option>Colours</option>
            <value>Blue</value>
          </option_value>
        </option_values>
      </product_variant>
      <product_variant>
        <code />
        <option_values>
          <option_value>
            <option>Colours</option>
            <value>Red</value>
          </option_value>
        </option_values>
      </product_variant>
      <product_variant>
        <code />
        <option_values>
          <option_value>
            <option>Colours</option>
            <value>Yellow</value>
          </option_value>
        </option_values>
      </product_variant>
    </product_variants>
  </product>
</products>