Documentation

catalog.productProperty.list

Scope: catalog Permissions to execute: for all

catalog.productProperty.list(select, filter, order, start)

Method gets list of product or SKU properties by filter.

Returns list of product or SKU properties list in response on success.

Parameters

ParameterТип 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.
startstring Printed page number. Works for https queries.


Examples

For JS

BX24.callMethod(
	'catalog.productProperty.list',
	{
		select: ['id'],
		filter:{
			iblockId: 16
		},
	},
	function(result)
	{
		if(result.error())
			console.error(result.error().ex);
		else
			console.log(result.data());
		result.next();
	}
);

For HTTPS

https://your_account/rest/catalog.productProperty.list?auth=_auth_key_&start=50

© «Bitrix24», 2001-2024