Documentation

catalog.productImage.list

catalog.productImage.list(productId, select)

Method gets list of images for specific product or SKU.

Parameters

ParameterType Description
productIdstring Product or SKU ID. Required parameter.
selectobject List of fields to show in response.


Examples

BX24.callMethod(
    'catalog.productImage.list', 
    {
      productId: 1
    }, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});

© «Bitrix24», 2001-2023
Up