Documentation

sale.basketproperties.delete

sale.basketproperties.delete(id)

The method deletes an element from property set for shopping cart table section.

When successful, returns true in response body.

Parameters

ParameterType Description
idstring Number of element from property set for shopping cart table section.


Examples

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


© «Bitrix24», 2001-2024
Up