Get Products' Images - Sellercloud API Docs

Overview

Endpoint that is presented in this article is used for retrieving the images of multiple products.

In order to consume the endpoint you must:

For information on how you can authenticate, see: Authentication

As soon as you do authentication and receive a valid token, it needs to be passed to the call.

Endpoint

Example for such endpoint for TT server is:

https://tt.api.sellercloud.com/rest/api/ProductImage/GetProductsImages

For your server endpoint will be:

https://{your_server_id}.api.sellercloud.com/rest/api/ProductImage/GetProductsImages

Request

Parameter Data Type Description Is Required
ProductsIDs Array(string) List of products IDs for which to retrieve the images Yes

Response

[
  {
    "ProductID": "string",
    "Images": [
      {
        "ImageID": 0,
        "Url": "string",
        "IsDefault": true,
        "IsMainDescriptionImage": true,
        "OriginalImageName": "string"
      }
    ]
  }
]