Skip to content

Import Special Prices to Magento V2

This task will add and update special prices in Magento v2. You must provide a sku (as shown in XML example below) that exists in Magento v2 for the special price to update successfully.

POST /V1/products/special-price

Settings

Connection

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

Fail File

Required
The XML file to save failed special price imports to. The data will be written in the same format as the input file.

Input File

Required
The XML file containing the special price to import in Magento.

Success File

Required
The XML file to save successful special price imports to. The data will be written in the same format as the input file.

Prevent Reprocessing

Required
Set to true to prevent the same record being processed more than once by the task. This setting will only work where an <external_id> element is provided in the XML.

Store View Code

Required
The magento store view code to perform the API calls against. Default value of 'all'.

Zynk Settings

See Common Task Settings.

Examples

A sample input file is shown below.

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfSpecialPrice>
  <SpecialPrice>
    <sku>24-MB01-9</sku>
    <price>10</price>
    <price_from>2019-11-15</price_from>
    <price_to>2019-11-18</price_to>
  </SpecialPrice>
</ArrayOfSpecialPrice>