Documentation

catalog.priceTypeLang.list

Scope: catalog Permissions: all

catalog.priceTypeLang.list(select, filter, order, start)

Method gets list of translations for price type names by filter.

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 Printed page number. Works for https queries.


Examples

For JS

BX24.callMethod(
	'catalog.priceTypeLang.list', 
	{ 
		filter:{
			catalogGroupId: 1
		},
	}, 
	function(result)
	{
		if(result.error())
			console.error(result.error().ex);
		else
			console.log(result.data());
		result.next();
	}
);

For HTTPS

https://your_portal/rest/catalog.priceTypeLang.list?auth=_auth_key_&start=50

© «Bitrix24», 2001-2024
Up