Documentation

catalog.vat.get

catalog.vat.get(id)

The method gets access to tax field values by ID.

When successful, returns tax resource in the resource body.

Parameters

ParameterType Description
idstring VAT rate ID.

Examples

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