Documentation

catalog.productPropertyEnum.list

catalog.productPropertyEnum.list(select, filter, order)

Method gets list of list property values by filter.

Parameters

ParameterType Description
selectobject Fields matching to available list of fields.
filterobject Fields matching to available list of fields.
orderobject Fields matching to available list of fields.


Example

BX24.callMethod(
    'catalog.productPropertyEnum.list', 
    { 
	  filter:{
		propertyId: 128
	},
    }, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});

© «Bitrix24», 2001-2023
Up