Import Customers to Prestashop
This task will create or update customers in Prestashop. See below for a sample input file.
Fail File
Required
The XML file to save failed customer imports to. The data will be written in the same format as the input file.
Input File
Required
The XML file containing the customers to import in Prestashop.
Success File
Required
The XML file to save successful customer imports to. The data will be written in the same format as the input file.
Zynk Id Match Field
Required
The field used for matching with the zynk_id element in your XML. If a match is found, the existing customer will be updated. If mo match is found, a new customer will be created with the information in the XML.
Connection
Required
The Prestashop connection to use. See the Connecting to Prestashop article if you require more information on how to create/manage connections.
Zynk Settings
See Common Task Settings.
Examples
Sample input files are shown below.
Simple
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfCustomer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Customer>
<zynk_id>1</zynk_id>
<id>1</id>
<errors />
<date_add>2019-02-22 16:18:13</date_add>
<date_upd>2019-02-22 16:18:13</date_upd>
<should_create>true</should_create>
<should_update>true</should_update>
<id_default_group>3</id_default_group>
<id_shop>1</id_shop>
<company />
<firstname>John</firstname>
<lastname>DOE</lastname>
<note />
<website />
<email>[email protected]</email>
<active>1</active>
<passwd>f1418c30681c2dc220fb5e416fdde595</passwd>
<associations>
<addresses />
<groups>
<group>
<id>3</id>
<errors />
<should_create>true</should_create>
<should_update>true</should_update>
<name />
<show_prices>0</show_prices>
<is_default>false</is_default>
</group>
</groups>
</associations>
</Customer>
</ArrayOfCustomer>
Detailed
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfCustomer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Customer>
<zynk_id>1</zynk_id>
<id>1</id>
<errors />
<date_add>2019-02-22 16:18:13</date_add>
<date_upd>2019-02-22 16:18:13</date_upd>
<should_create>true</should_create>
<should_update>true</should_update>
<id_default_group>3</id_default_group>
<id_shop>1</id_shop>
<company />
<firstname>John</firstname>
<lastname>DOE</lastname>
<note />
<website />
<email>[email protected]</email>
<active>1</active>
<passwd>f1418c30681c2dc220fb5e416fdde595</passwd>
<associations>
<addresses>
<address>
<id>1</id>
<errors />
<date_add>2019-02-22 16:18:13</date_add>
<date_upd>2019-02-22 16:18:13</date_upd>
<should_create>true</should_create>
<should_update>true</should_update>
<id_customer>1</id_customer>
<id_manufacturer>0</id_manufacturer>
<id_supplier>0</id_supplier>
<id_warehouse>0</id_warehouse>
<id_country>8</id_country>
<id_state>0</id_state>
<alias>Mon adresse</alias>
<company>My Company</company>
<firstname>John</firstname>
<lastname>DOE</lastname>
<address1>16, Main street</address1>
<address2>2nd floor</address2>
<city>Paris </city>
<postcode>75002</postcode>
<phone>0102030405</phone>
</address>
<address>
<id>4</id>
<errors />
<date_add>2019-02-22 16:18:14</date_add>
<date_upd>2019-02-22 16:18:14</date_upd>
<should_create>true</should_create>
<should_update>true</should_update>
<id_customer>1</id_customer>
<id_manufacturer>0</id_manufacturer>
<id_supplier>0</id_supplier>
<id_warehouse>0</id_warehouse>
<id_country>21</id_country>
<id_state>12</id_state>
<alias>My address</alias>
<company>My Company</company>
<firstname>John</firstname>
<lastname>DOE</lastname>
<address1>16, Main street</address1>
<address2>2nd floor</address2>
<city>Miami</city>
<postcode>33133</postcode>
<phone>0102030405</phone>
</address>
</addresses>
<groups>
<group>
<id>3</id>
<errors />
<date_add>2019-02-22 16:18:12</date_add>
<date_upd>2019-02-22 16:18:12</date_upd>
<should_create>true</should_create>
<should_update>true</should_update>
<english_name>Customer</english_name>
<name>
<language id="1">Customer</language>
</name>
<show_prices>1</show_prices>
<reduction>0.00</reduction>
<is_default>false</is_default>
</group>
</groups>
</associations>
</Customer>
</ArrayOfCustomer>