Documentation

catalog.productPropertySection.list

Scope: catalog Permissions to execute: for all

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

Method gets list of property or SKU sections by filter.

Parameters

ParameterType Description
selectobject Fields, matching to available list of fields, as well as propertyId (product or SKU property ID).
filterobject Fields, matching to available list of fields, as well as propertyId (product or SKU property ID).
orderobject Fields, matching to available list offields, as well as propertyId (product or SKU property ID).
startstring Printed page number. Works for https queries.


Examples

For JS

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

For HTTPS

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


© «Bitrix24», 2001-2024