Documentation

crm.currency.list

Returns a list of currencies selected by the filter specified as the parameter. See the example for the filter notation. Notice that the current implementation does not support the parameters "filter", "select" and "navigation".

Parameters

See the list method reference for the parameters.

Example

	BX24.callMethod(
			"crm.currency.list", 
			{}, 
			function(result) 
			{
				if(result.error())
					console.error(result.error());
				else
				{
					console.dir(result.data());			
					if(result.more())
						result.next();						
				}
			}
		);	


© «Bitrix24», 2001-2024
Up