FOR RETURNS ONLY. Contains the data on all the goods that are being sold by the retailer.

Used when integrating with our partner ZigZag to manage returns.

The product feed contains the data on all the goods that are being sold by the retailer. Is needed for the Inventory Grid and in order to grab product's data on the received order files. Is also used to apply category, product type and brand pricing settings. Can be provided in several languages.

It can be integrated via FTP, or via API.

Integration via FTP

Naming convention: ProductsDE{timestamp}.csv; ProductsGB{timestamp}.csv etc. Timestamps supplied in ISO 8601 format. e.g. 2013-10-31T000000Z

Upload frequency: once per day

Directory: sftp/feeds/Inventory/Country ISO2Code

Column Name (csv)Field Name (XML, XLSX)Example DataObligator yObligator y for Live Exchange sRestrictions
SKU30D24LREDYesYesString, max length 50
Master SKU33057NoYesString, max length 50
BrandZigZagNoNoString, max length 200
Google Product CategoryApparel & Accessories > Clothing > DressesNoYesString, max length 250
GTIN5019808762341YesYesString, max length 50
MPN28047996NoNoString, max length 50
Availabilit yAvailableNoNoString, max length 250
Sale Price Effective Date2017-05-01 00:00:00NoNoDateFormat, yyyy-MM- ddTHH:mm:s s
ConditionNewNoNoString, max length 50
URL Image 1https://zigzag.global/direct_download _ linkNoNoString, max length 250
URL Image 2 https://zigzag.global/direct_download _ linkNoNoString, max length 250
URL Image 3https://zigzag.global/direct_download _ linkNoNoString, max length 250
URL Image 4https://zigzag.global/direct_download _ linkNoNoString, max length 250
URL Image 5https://zigzag.global/direct_download _ linkNoNoString, max length 250
URL Image 6https://zigzag.global/direct_download _ linkNoNoString, max length 250
URL Image 7https://zigzag.global/direct_download _ linkNoNoString, max length 250
URL Image 8https://zigzag.global/direct_download _ linkNoNoString, max length 250
Tag (Colour)BRIGHT REDNoNoString, max length 20
Descriptio nPrepare yourself for SS17 by injecting a pop of colour into your wardrobe...NoNoString, max length 500
Item TitleTALL ring wrap dressYesYesString, max length 500
Attribute (Size)10NoNoString, max length 50
Tag (Gender)FemaleNoNoString, max length 50
Linkhttps://zigzag.global/direct_download _ linkNoNoString, max length 250
Age18, TeenageNoNoString, max length 50
Weight0.5NoYesDecimal
Width20NoNoDecimal
Height5NoNoDecimal
Length20NoNoDecimal
SeasonSummerNoNoString, max length 50
FitSlimNoNoString, max length 50
Country of Origin ISO2 CodeGBNoYesISO 2 Country Code

Integration via API

This endpoint is designed to create new products or update existing products. Products failing validation will not be processed.

PUT: https://api.returns.international/Return/api/v1/products/{SKU}

Example payload:

{
  "retailerCode": "GL123",
  "masterSku": "Monogrammed",
  "brand": "string",
  "googleProductCategory": "Accessories",
  "gtin": "Monogrammed",
  "mpn": "string",
  "condition": "string",
  "availability": "string",
  "salePriceEffectiveDate": "2019-08-24T14:15:22Z",
  "defaultProductHsCode": "string",
  "productInformation": [
    {
      "name": "MONOGRAMMED",
      "description": "string",
      "gender": "string",
      "link": "https://image.spreadshirtmedia.net/image-server/v1/mp/products/T6A7MPA4289PT17X0Y330D168795764FS2014/views/1,width=800,height=800,appearanceId=7,backgroundColor=F2F2F2,modelId=1405,crop=list/yellow-shirt-with-black-zigzag-mens-t-shirt.jpg",
      "color": "Black",
      "size": "string",
      "imageLink": "https://image.spreadshirtmedia.net/image-server/v1/mp/products/T6A7MPA4289PT17X0Y330D168795764FS2014/views/1,width=800,height=800,appearanceId=7,backgroundColor=F2F2F2,modelId=1405,crop=list/yellow-shirt-with-black-zigzag-mens-t-shirt.jpg",
      "age": "string",
      "weight": 10,
      "width": 10,
      "height": 10,
      "length": 10,
      "countryCode": "GB",
      "countryOfOriginIso2Code": "GB",
      "fit": "string",
      "season": "string"
    }
  ],
  "prices": [
    {
      "countryCode": "GB",
      "rrp": 0,
      "sellingPrice": 10,
      "shippingCost": 10,
      "costPrice": 10
    }
  ]
}