Tapfiliate affiliate tracking software supports the use of product feeds. Product feeds are a great way of supplying product information for your affiliates.
Product feeds have te following requirements:
- The XML root for the feed should be called ‘items’
- Each item node should be called ‘item’
- The following item properties are supported:
- id (required)
- title (required)
- link (required)
- description
- image_link
- availability
- price
- sale_price
- currency
- brand
- product_type
- gender
- color
- size
- other_1
- other_2
- other_3
- id (required)
- Feeds should be served with content type text/xml
An example feed could look like this:
<?xml version="1.0" encoding="UTF-8"?> <items> <item> <id> 123 </id> <title> V-Neck Shirt </title> <description> It is awesome </description> <link> http://myshop.com/v-neck-shirt/ </link> <image_link> https://shirt.com/img/v-neck-shirt.jpg </image_link> <availability> in stock </availability> <price> 22.5 </price> <sale_price> 17.5 </sale_price> <currency> USD </currency> <brand> Awesomesauce </brand> <product_type> T-Shirt </product_type> <gender> Male </gender> <color> Blue </color> <size> XXL </size> <other_1> foo </other_1> <other_2> bar </other_2> <other_3> baz </other_3> </item> <item> ... </item> </items>
The feeds get updated every hour.
Please note that you may need the help of a developer to help set this up for you.