Documentation

catalog.catalog.get

Scope: catalog Permissions: all

catalog.catalog.get(id)

The method gets field values of commercial catalog by ID.

When successful, returns 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-2024
Up