Skip to content

Export Product Categories from Prestashop

This task will export product categories from Prestashop in an XML format. See below for a sample output file.

Settings

Output File

Required
The name of the file to export the customer groups 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

A sample output file is shown below.

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfProductCategory xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ProductCategory>
    <id>1</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>
    <name>
      <language id="1">Root</language>
    </name>
    <description>
      <language id="1"></language>
    </description>
    <id_parent>0</id_parent>
    <is_root_category>0</is_root_category>
    <active>1</active>
    <is_default>false</is_default>
  </ProductCategory>
</ArrayOfProductCategory>