Documentation

sale.basketproperties.list

sale.basketproperties.list(select, filter, order, navigation)

The method gets list of elements for shopping cart property set.

When successful, returns list of elements in response body.

Parameters

ParameterType Description
selectobject Fields, corresponding to available list of fields.
filterobject Fields, corresponding to available list of fields.
orderobject Fields, corresponding to available list of fields.
navigationstring Number of displayed page.


Examples

BX24.callMethod(
    'sale.basketproperties.list', 
    { select:{
		id,
		name
	  } ,
	  filter:{
		quantity: 2
	  },
	  order:{
		id: ASC
	  },
	  navigation: 1
	}, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});


© «Bitrix24», 2001-2024
Up