Import Companies to Magento V2
This task will create or update companies in Magento. See below fora sample input file.
If the <id>
element is specified in the input file, the task will update the company with the specified ID. If no ID is specified, the task will use the <company_name>
, then the <company_email>
element to check if the company already exists. If a match is found the existing company will be updated, otherwise a new company will be created.
POST /V1/company
This method will be used for creating new companies.
PUT /V1/company/{id}
This method will be used for updating existing companies. The matching routine is noted above.
{id} You must provide either the company id or the email in order find a successfully match for the company. You can also use a match clause.
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 company imports to. The data will be written in the same format as the input file.
Input File
Required
The XML file containing the companies to import in Magento.
Success File
Required
The XML file to save successful company 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"?>
<ArrayOfCompany xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Company>
<external_id>ZYNK0001</external_id>
<company_name>Zynk Software</company_name>
<company_email>[email protected]</company_email>
<street>
<string>6 Charlotte Square</string>
</street>
<city>Newcastle</city>
<postcode>NE1 4XF</postcode>
<country_id>GB</country_id>
<telephone>0191 820 1484</telephone>
<customer_email>[email protected]</customer_email>
<customer_group_code>Trade</customer_group_code>
<credit>
<currency_code>GBP</currency_code>
<credit_limit>100</credit_limit>
<exceed_limit>true</exceed_limit>
</credit>
</Company>
</ArrayOfCompany>