Documentation

catalog.priceTypeGroup.list

Scope: catalog Permissions: all

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

Method gets list of price type bindings to customer groups.

Parameters

ParameterType Description
selectobject Fields, matching to available list of fields.
filterobject Fields, matching to available list of fields.
orderobject Fields, matching to available list of fields.
startstring Page number. Used to display the list. Works for https queries.


Examples

For JS

BX24.callMethod(
	'catalog.priceTypeGroup.list', 
	{
		select: ['catalogGroupId'],
		filter:{
			groupId: 8
		},
	}, 
	function(result)
	{
		if(result.error())
			console.error(result.error().ex);
		else
			console.log(result.data());
		result.next();
	}
);

For HTTPS

https://your_account/rest/catalog.priceTypeGroup.list?auth=_auth_rey_&start=50

© «Bitrix24», 2001-2024
Up