Documentation

catalog.extra.list

Scope: catalog Permissions: all

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

The method gets list of extra charges by filter.

Returns list of extra charges in the response body on success.

Parameters

ParameterType 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.
startstring Page number. Works with http queries. .


Examples

BX24.callMethod(
    'catalog.extra.list', 
    { 
      select:{
		id,
	  },
	  filter:{
		percentage: 10
	  },
	  order:{
		id: ASC
	  },
      navigation: 1
    }, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});

Example of https query:

https://your_account/rest/catalog.price.list?auth=_authentication_key_&start=50
© «Bitrix24», 2001-2024
Up