Documentation

catalog.productProperty.delete

Scope: catalog Permissions to execute: for all

catalog.productProperty.delete(id)

Method deletes a product or SKU property.

Returns true on success.

Parameters

ParameterType Description
idstring Product or SKU property.

Examples

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

© «Bitrix24», 2001-2024
Up