Documentation

catalog.catalog.list

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

The method gets list of commercial catalogs by filter.

When successful, returns list of commercial catalogs in the response body.

Parameters

Retrieved page number.
PrameterType 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.
navigationstring


Examples

BX24.callMethod(
    'catalog.catalog.list', 
    { 
      select:{
		id,
	},
	  filter:{
		iblockId: 1
	  },
	  order:{
		id: ASC
	  },
	  navigation: 1
    }, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});
© «Bitrix24», 2001-2023
Up