Image Configures the images for one or more products by associating one or more image URLs.

The responsibility of hosting the images lies with the user making the API call. The first specified image will be set as the default product image. When using this endpoint, all previously associated images will be disassociated. The limit is a maximum of 8 images per product.

🚧

Formats and Resolution

The maximum resolution is 2000x2000 pixels and the minimum is 500x500.

Supported formats are PNG and JPG.

This API is asynchronous and generates the creation of a Feed; always remember to check the details of a feed to review whether the product was created successfully or if there are any issues with the rejection.


<?xml version="1.0" encoding="UTF-8" ?>
<Request>
<ProductImage>
    <SellerSku>TEST-SKU-12345</SellerSku>
    <Images>
        <Image>https://i.ibb.co/9y07Drk/sunglass.jpg</Image>
    </Images>
</ProductImage>
</Request>
<?xml version="1.0" encoding="UTF-8" ?>
<Request>
<ProductImage>
    <SellerSku>TEST-SKU-12345</SellerSku>
    <Images>
        <Image>https://i.ibb.co/9y07Drk/sunglass.jpg</Image>
        <Image>https://i.ibb.co/8mwCqBj/63caa-stitch-tierno-png.png</Image>
    </Images>
</ProductImage>
</Request>
<?xml version="1.0" encoding="UTF-8" ?>
<Request>
<ProductImage>
    <SellerSku>TEST-SKU-12345</SellerSku>
    <Images>
        <Image>https://i.ibb.co/9y07Drk/sunglass.jpg</Image>
        <Image>https://i.ibb.co/8mwCqBj/63caa-stitch-tierno-png.png</Image>
        <Image>https://i.ibb.co/8mwCqBj/example-image-png.png</Image>
    </Images>
</ProductImage>
</Request>

Errors

Código de errorMensaje
1000Format Error Detected (Error de formato detectado)
Language