Documentation

catalog.priceTypeGroup.delete

Scope: catalog Permissions: all

catalog.priceTypeGroup.delete(id)

Method deletes price type binding to a customer group.

Returns true on success.

Parameters

ParameterType Description
idinteger Identifier for price type binding to customer group.

Examples

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

© «Bitrix24», 2001-2024
Up