> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.stock-sync.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How to export product in XML format ?

Products can be generated/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 the `directory/filename` section to automatically convert the file to XML.

| Example: The directory name (**`data`**), and the filename (**`xml-feed.xml`**) need to be specified in the field as below.
| ![](https://storage.crisp.chat/users/helpdesk/website/-/b/2/1/9/b219050a5836c000/screenshot-2025-07-02-at-95520_15tfwy7.png =755xauto)

### Sample export XML structure

```json
<?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>
```

