Documentation

catalog.ratio.list

catalog.ratio.list(select, filter, order, navigation)

The method gets list of measurement unit ratio by filter.

When successful, returns list of measurement unit ratios in the response body.

Parameters

ParameterType Description
selectobject Fields, corresponding to the available list of fields.
filterobject Fields, corresponding to the available list of fields.
orderobject Fields, corresponding to the available list of fields.
navigationstring Retrieved page number.


Examples

BX24.callMethod(
    'catalog.ratio.list', 
    { select:{
		id		
	  } ,
	  filter:{
		isDefault: Y
	  },
	  order:{
		id: asc
	  },
	  navigation: 1
	}, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});
© «Bitrix24», 2001-2023
Up