Skip to main content

XML Feed for products

If you're looking for an easy way to automatically upload items from your store to OGO, we offer several options to choose from. You can use one of our supported formats, such as Google Shopping, Já vöruleit, or any custom XML that follows our requirements. Alternatively, if you're using WordPress, you can take advantage this plugin.

https://wordpress.org/plugins/woo-product-feed-pro/.

This plugin makes it easy to connect your store to OGO and start uploading your listings with just a few clicks.

How to connect XML Feed

In the OGO PRO dashboard, add a new XML Feed, select the feed update frequency and click "add".

OGO offers automated product feed scanning on a schedule, with results displayed in your dashboard. Our system automatically categorizes your products, but you can easily make changes manually. Additionally, OGO can group products into "extra" cards, which help users find related items more easily.

Feed Structure

ogo_feed_example.xml
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:g="http://base.google.com/ns/1.0" version="2.0">
<channel>
<title>Example - Online Store</title>
<link>http://www.example.com</link>
<description>
This is a sample feed containing the required and recommended attributes for a variety of different products
</description>
</channel>
<item>
<!-- Required fields -->
<g:id>...</g:id>
<g:title>...</g:title>
<g:description>...</g:description>
<g:link>...</g:link>
<!-- default ISK, use the Currency parameter to specify -->
<g:price>...</g:price>

<!-- Optional fields -->
<g:image_link>...</g:image_link>
<g:condition>...</g:condition>
<g:availability>...</g:availability>
<g:gtin>...</g:gtin>
<g:brand>...</g:brand>
<g:mpn>...</g:mpn>

<!-- If the product has different versions -->
<g:item_group_id>...</g:item_group_id>
</item>
</rss>

Feed Structure with many currencies

ogo_feed_example.xml
...
<currencies>
<currency id="ISK" rate="1"/>
<currency id="USD" rate="140"/>
</currencies>
...
<item>
...
<currencyId>ISK</currencyId>
</item>
...

Special fields

Special fields can also be added for OGO

ogo_feed_example.xml
...
<item>
...
<param name="Color">red</param>
<param name="Gender">male</param>
<param name="Size">M</param>
...
</item>
...