Skip to content

Export Stores from Magento

This task will export all stores from Magento in XML format. See below for a sample output file.

Settings

Connection

Required
The Magento connection to use. See the Connecting to Magento v1 article if you require more information on how to create/manage connections.

Output File

Required
The name of the file to export the stores to.

Zynk Settings

See Common Task Settings.

Examples

Sample output file:

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfStore xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Store>
    <store_id>1</store_id>
    <code>default</code>
    <website_id>1</website_id>
    <group_id>1</group_id>
    <name>Default Store View</name>
    <sort_order>0</sort_order>
    <is_active>1</is_active>
  </Store>  
  <Store>
    <store_id>2</store_id>
    <code>amazon_uk</code>
    <website_id>1</website_id>
    <group_id>2</group_id>
    <name>Amazon UK</name>
    <sort_order>0</sort_order>
    <is_active>0</is_active>
  </Store>
  <Store>
    <store_id>3</store_id>
    <code>amazon_germany</code>
    <website_id>1</website_id>
    <group_id>3</group_id>
    <name>Amazon DE</name>
    <sort_order>2</sort_order>
    <is_active>0</is_active>
  </Store>
</ArrayOfStore>