Documentation

catalog.priceTypeLang.delete

Scope: catalog Permissions to execute: for all

catalog.priceTypeLang.delete(id)

Method deletes translation for price type name.

Returns true in response on success.

Parameters

ParameterType Description
idinteger Translation ID for price type name.

Examples

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

© «Bitrix24», 2001-2024
Up