Documentation

catalog.priceType.list

Scope: catalog Permissions: all

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

The method gets list of price types by filter.

When successful, returns list of price types in the response body.

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 Retrieved page number. Works for http queries


Examples

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

For HTTPS

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