How to export product in XML format ?
Products can be exported via FTP, SFTP, or FTPS connections.
- Ensure the file extension is
.xml
- The parent node default to
Product
so no input is needed. - The structure starts with
<Product> .... </Product>
- Specify the desired filename (e.g.,
xml-feed.xml
) in thedirectory/filename
section to automatically convert the file to XML.
data
), and the filename (xml-feed.xml
) need to be specified in the field as below.
Sample export XML structure
<?xml version="1.0" encoding="UTF-8"?>
<Products>
<Product>
<Quantity>12</Quantity>
<ProductTitle>Cache Coeur® Nočne pralne blazinice za dojenje Curve 4 kosi</ProductTitle>
<ProductId>EP801EN-4</ProductId>
</Product>
<Product>
<Quantity>0</Quantity>
<ProductTitle>Joie® Otroški avtosedež i-Harbour™ E i-Size (61-105 cm) Signature Eclipse</ProductTitle>
<ProductId>C2104CBECL000</ProductId>
</Product>
<!-- ... rest of products ... -->
<Product>
<Quantity>3</Quantity>
<ProductTitle>CamCam® Držalo za dudo</ProductTitle>
<ProductId>953-P93-TEST-1</ProductId>
</Product>
</Products>
Updated on: 02/07/2025
Thank you!