Skip to content

Item Thumbnails

Kunal Varma edited this page Mar 9, 2016 · 1 revision

Thumbnails

Get an Item's thumbnails

$thumbnails = $client->getItemThumbnails($item->id);

Get an Item's thumbnails with specified fields and/or size

$thumbnails = $client->getItemThumbnails($item->id, ['select' => "id,large"]);

Get a Single thumbnail

$thumbnailID = "0";
$thumbnail = $client->getItemThumbnail($item->id, $thumbnailID);

Table of Contents

Getting Started

Examples

Clone this wiki locally