Export Customers from Prestashop
This task will export customers from Prestashop in an XML format. The results can be filtered if required. See below for a sample output file.
Settings
Export Detailed
Optionally download a more detailed version of the record
Filter Settings
Export All
True: All records will be exported, regardless of when they were created or updated. False: Records will be exported based on Export From date and any Filters that have been specified.
Export From
The date to begin exporting records from. This date will update automatically each time the task runs.
Filters
Optionally filter the exported records.
Output File
Required
The name of the file to export the addresses to.
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 output 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>
<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>
<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>