Documentation

catalog.product.sku.list

Scope: catalog Permissions: all

catalog.product.sku.list(select, filter, order)

Method gets list of SKU products by filter.

Returns list of SKU products in response body on success.

Parameters

ParameterType Description
selectobject Fields, matching to the available list of getFieldsByFilter.
filterobject Fields, matching to the available list of getFieldsByFilter.
orderobject Fields, matching to the available list of getFieldsByFilter.
startstring Printed page number. Works for https queries.


Examples

BX24.callMethod(
	'catalog.product.sku.list', 
	{
		select:{
			id
		},
		filter:{
			iblockId: 15
		},
	},
	function(result)
	{
		if(result.error())
			console.error(result.error().ex);
		else
			console.log(result.data());
		result.next();
	}
);

For HTTPS

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

© «Bitrix24», 2001-2025