Documentation

catalog.product.get

catalog.product.get(id)

The method gets field value of commercial catalog product by ID.

When successful, returns Commercial catalog product resource in the response body.

Parameters

ParameterType Description
idstring Commercial catalog product number.

Examples

BX24.callMethod(
    'catalog.product.get', 
    {
      id: 13
    }, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});
© «Bitrix24», 2001-2024
Up