Documentation

catalog.store.get

catalog.store.get(id)

The method gets warehouse field values by ID.

When successful, returns warehouse resource in the response body.

Parameters

ParameterType Description
idstring Tax number.

Examples

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