Documentation

sale.basketProperties.get

sale.basketProperties.get(id)

The method accesses fields of property set element for shopping cart table section.

When successful, returns shopping cart property resource in response body.

Parameters

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

Examples

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


© «Bitrix24», 2001-2024
Up