Documentation

catalog.measure.list

Scope: catalog Permissions: all

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

The method gets list of measurement units by filter.

When successful, returns list of measurement units 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.
startstring Retrieved page number. Works for http queries.


Examples

For JS

BX24.callMethod(
	'catalog.measure.list', 
	{
		select:{
			id,
		},
		filter:{
			isDefault: N
		},
		order:{
			id: ASC
		},
	},
	function(result)
	{
		if(result.error())
			console.error(result.error().ex);
		else
			console.log(result.data());
		result.next();
	}
);

For HTTPS

https://your_account/rest/catalog.measure.list?auth=_auth_key_&start=50
© «Bitrix24», 2001-2024