Documentation

catalog.product.offer.list

Scope: catalog Permissions: all

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

Method gets list of SKUs by filter.

Returns SKU list 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 only for https queries.


Examples

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

For HTTPS

https://your_account/rest/catalog.product.offer.list?auth=_authentication_key_&start=50

© «Bitrix24», 2001-2024
Up