Skip to content

Import Source Items to Magento V2

This task will update source items in Magento. See below for a sample input file.

POST /V1/inventory/source-items

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 source item to. The data will be written in the same format as the input file.

Input File

Required
The XML file containing the source item to import in Magento.

Success File

Required
The XML file to save successful source item 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"?>
<ArrayOfSourceItem>
  <SourceItem>
    <sku>TEST-SKU</sku>
    <source_code>zynk</source_code>
    <quantity>1</quantity>
    <status>1</status>
  </SourceItem>
</ArrayOfSourceItem>