Documentation

catalog.vat.get

Scope: catalog Permissions to execute: for all

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
idinteger 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-2024
Up