Set the images for one or multiple products, by associating one or more image URLs with it.
It is the API caller's responsibility to host the images.
The first image passed in becomes the product's default image.
Upon calling this endpoint, all previously associated images are disassociated.
There is a hard limit of at most 8 images per product.

This call creates a feed, which is then processed by system in the background.

Errors

Error codeMessage
1000Format Error Detected

Body Examples

<?xml version="1.0" encoding="UTF-8" ?>
<Request>
	<ProductImage>
		<SellerSku>b2378adf</SellerSku>
		<Images>
			<Image>http://static.somecdn.com/rear.jpeg</Image>
		</Images>
	</ProductImage>
</Request>
<?xml version="1.0" encoding="UTF-8" ?>
<Request>
	<ProductImage>
		<SellerSku>b2378adf</SellerSku>
		<Images>
			<Image>http://static.somecdn.com/moneyshot.jpeg</Image>
			<Image>http://static.somecdn.com/front.jpeg</Image>
			<Image>http://static.somecdn.com/rear.jpeg</Image>
		</Images>
	</ProductImage>
</Request>
<?xml version="1.0" encoding="UTF-8" ?>
<Request>
	<ProductImage>
		<SellerSku>b2378adf</SellerSku>
		<Images>
			<Image>http://static.somecdn.com/moneyshot.jpeg</Image>
			<Image>http://static.somecdn.com/front.jpeg</Image>
			<Image>http://static.somecdn.com/rear.jpeg</Image>
		</Images>
	</ProductImage>
	<ProductImage>
		<SellerSku>c62378fdf</SellerSku>
		<Images>
			<Image>http://static.somecdn.com/unboxing.jpeg</Image>
			<Image>http://static.somecdn.com/in-use.jpeg</Image>
			<Image>http://static.somecdn.com/recycled.jpeg</Image>
		</Images>
	</ProductImage>
</Request>
Language