Product Feed
Present products during your events, viewers can see a list of selected products, see the product detail page and add products to their cart without leaving the live.
To do that you have to share with us a XML product feed with all the information needed.
There are two ways of sharing this XML file:
Dynamic, your product feed is accessible via a URL, the sync will be done automatically every night, and all the changes you make on your products will replace the information we had. You can also launch the sync manually at any time from the back office (more information here)
Static, you send us an XML file when you need new products to be added or information to be updated.
The product feed
Here is the list of attributes you need to add in your product feed.
Attribute
Required
Description
title
yes
Product title
description
yes
Product description
image_link
yes
Product image link
id
yes
The product ID used by the Add To Cart. If there are variants, it represents the child product Id.
link
no
Product page URL, this field is mandatory if you're using the link to product page option instead of the add to cart (more information here)
price
no
Product price. The currency should not be added. It represents a floating number (e.g : 49.99)
sale_price
no
Product price if there is any discount. Both prices will be displayed.
gtin
no
Product GTIN. It should represent an EAN13 / UPC (barcode)
sku
no
Product SKU. An unique alphanumeric code for each product variant
weightPrice
no
Product price per weight, don't include currency
group_id
yes (if variants)
The parent ID of the product.
variant1
yes (if variants)
Product variant. For exemple, if it is a color, it should be <color>red</color>
variant2
(if any)
yes (if variants)
The seconds product's variant. For exemple, if it is a size, it should be <size>XXL</size>
Products missing one required field won't be imported.
Product feed integration
We are currently supporting 2 product feed formats, Lengow and Google Shopping. During the onboarding, you will need to give us a public URL to an XML file with your product feed. Every night we will use this link to synchronize the feed. Existing products will be updated and new ones added.
If you're not using one of these platforms, you have 2 solutions:
You have a public URL linked to an XML product feed
During the onboarding, we will communicate with you in order to understand your file format and map it with ours. Once done the sync will be automatically done every night
Create products manually
Add products directly from our back office, click this link to see how.
You have a static XML file
We will ask during your onboarding for an XML file with your product feed in order to match it with our and solve any corresponding issues we can find. Then each time you need to update your products you will have to send us a new file. You can find below examples of XML product feed.
Lengow XML feed
Here is an XML example of a Products Feed, based on a Lengow configuration.
With variants :
Without variants :
Google Shopping XML Feed
Variants auto sorting
Ideally, your product feed should present the variant values in the order you want them to be displayed in the dropdown menu. If that is not possible, you can use this feature to get them sorted in a logical manner, usually from smallest to largest.
Contact us to activate this feature
If this feature is enabled, the product sync script will attempt to detect the nature of the variant (shoe size, bra size, t-shirt size, etc) using regular expressions. Our algorithm was designed not to meddle with the ordering of the values if we are not sure of what they represent. In order for that to happen, the algorithm will parse a product's variant values into an array of strings and will only sort them if they all match a given regular expression.
For instance, an array of ["30ml", "100ml", "15ml", "pineapple"]
will not be sorted and will be imported as-is.
Examples of supported variant formats:
Examples of not supported variant formats:
Last updated