Documentation

catalog.vat.delete

Scope: catalog Permissions to execute: for all

catalog.vat.delete(id)

Method deletes a VAT rate.

Returns true on success in the response body.

Parameters

ParameterType Description
idinteger VAT rate ID.

Examples

BX24.callMethod(
    'catalog.vat.delete', 
    {
      id: 11
    }, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});

© «Bitrix24», 2001-2024
Up