Get method to show a Product
Name | Description |
---|---|
account_id required | Your account unique identifier to access API. |
UUID | Unique identifier of the product |
name | Name of the product |
price | Price of the product |
currency | Currency of the product |
description | Description of the product |
store | Store of the product |
url | The external link of the product |
image_url | The external image link of the product |
updated_since | updated since inclusive |
updated_until | updated until inclusive |
limit | max number of products returned, default max set to 200 |
order | creation desc or asc order |
GET
/v2/account/:account_id/products/
Accept: application/json
Authorization: Token token={account.secret}
Content-Type: application/json
200
{
"products": [
{
"UUID": "3210938120313912312",
"name": "Iphone6",
"price": 748.45,
"currency": "EUR",
"description": "3D Touch. 12MP photos. 4K video.One powerful phone.",
"url": "http://www.apple.com/shop/buy-iphone/iphone6s/5.5-inch-display-128gb-gold",
"image_url": "http://store.storeimages.cdn-apple.com/4973/as-images.apple.com/is/image/AppleInc/aos/published/images/i/ph/iphone6s/plus/iphone6s-plus-gold-select-2015?wid=470&hei=556&fmt=png-alpha&qlt=95&.v=7DNkd1"
}
]
}