Skip to content

Export Product Attribute Options from Magento

This task will export all option values for a selected product attribute from Magento in Magento XML format.

Settings

Attribute

Required
The attribute code (eg 'colour').

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 option values to.

Zynk Settings

See Common Task Settings.

Examples

Sample output file when downloading the options for a 'colour' attribute:

<?xml version="1.0"?>
<ArrayOfProductAttributeOption>
  <ProductAttributeOption>
    <value>3</value>
    <label>Blue</label>
  </ProductAttributeOption>
  <ProductAttributeOption>
    <value>5</value>
    <label>Green</label>
  </ProductAttributeOption>
  <ProductAttributeOption>
    <value>6</value>
    <label>Red</label>
  </ProductAttributeOption>
  <ProductAttributeOption>
    <value>4</value>
    <label>Yellow</label>
  </ProductAttributeOption>
</ArrayOfProductAttributeOption>