Documentation

catalog.catalog.get

catalog.catalog.get(id)

The method gets field values of commercial catalog by ID.

When successful, returns [link= 11111487]commercial catalog resource] in the response body.

Parameters

PrameterType Description
idstring Commercial catalog number.

Examples

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