Documentation

catalog.price.delete

Scope: catalog Permissions: all

catalog.price.delete(id)

The method deletes product price from product price collection.

When successful, returns true in the response body.

Parameters

ParameterType Description
idstring Product price number.

Examples

BX24.callMethod(
    'catalog.price.delete', 
    {
      id: 56
    }, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});
© «Bitrix24», 2001-2024
Up