Skip to content

Import Customer Groups to Magento V2

This task will create or update customer groups in Magento. See below for a sample input file.

If the <id> element is specified in the input file, the task will update the customer group with the specified ID. If no ID is specified, the task will use the <code> element to check if the customer group already exists. If a match is found the existing customer group will be updated, otherwise a new customer will be created.

POST /V1/customerGroups

This method will be used for creating new customer groups. The matching routine is noted above.

PUT /V1/customerGroups/{id}

This method will be used for updating existing customer groups. The matching routine is noted above.
{id} You must provide either the customer id or the code in order find a match for the customer group. 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 customer group imports to. The data will be written in the same format as the input file.

Input File

Required
The XML file containing the customer groups to import in Magento.

Success File

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

Default Tax Class Name

Optional
The default tax class to use when a tax class id is not specified in 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"?>
<ArrayOfGroup xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Group>
    <id>4</id>
    <code>Wholesale</code>
    <tax_class_id>3</tax_class_id>
  </Group>
</ArrayOfGroup>