Documentation

catalog.roundingRule.get

catalog.roundingRule.get(id)

The method gets field values of price rounding rules by ID.

When successful, returns price rounding rule resource in the response body.

Parameters

ParameterType Description
idinteger Price rounding rule number.

Examples

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