Documentation

crm.currency.localizations.delete

Deletes one or more localizations of the currency specified by the ID.

Parameters

Parameter Description
id Specifies the ID of the currency.
lids An array of language ID's whose localizations for the specified currency are to be deleted.

Example

	var id = prompt("Enter the currency ID");
		var langId = prompt("Enter the lang ID (ru, en, de)");
		BX24.callMethod(
			"crm.currency.localizations.delete", 
			{
				id:id, 
				lids:[ langId ]
			}, 
			function(result) 
			{
				if(result.error())
					console.error(result.error());
				else
					console.info(result.data());
			}
		);	


© «Bitrix24», 2001-2024