Skip to content

Import Product Discounts into B2B Wave

This task will import product discount records into your B2B Wave admin panel. You will provide an input file containing a list of product discounts.

If you provide a new product discount the task will create a new record in B2B Wave and if you provide an existing product discount the task will update the existing record in B2B Wave. You can match existing product discounts by providing the id or external_id element in the input file.

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

<?xml version="1.0" encoding="utf-8"?>
<product_discounts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <product_discount>
    <id>420</id>
    <external_id>5230</external_id>
    <product_code>011</product_code>
    <pricelist_name>Trade</pricelist_name>
    <percentage>10</percentage>
    <from_quantity>1</from_quantity>
    <date_from>2024-08-01T00:00:00</date_from>
    <date_to>2024-08-31T00:00:00</date_to>
    <price>10</price>
  </product_discount>
</product_discounts>