Documentation

crm.company.update

Scope: catalog Permissions to execute: for all

crm.company.update(id, fields, params)

Updates the specified (existing) company.

Important! It is strongly recommended to pass the full set of fields to the update method when updating the address. Specifics of address fields are described here.

Parameters

Parameter Description
id Specifies the company ID.
fields Set of fields - is an array ("updated field"=>"value"[, ...]), where "updated field" can have values, returned by crm.company.fields method.
Note: to find out the required field format, execute the method crm.company.fields to view the retrieved field format.

Example

	var id = prompt("Enter ID");
		BX24.callMethod(
			"crm.company.update", 
			{ 
				id: id,
				fields:
				{ 
					"CURRENCY_ID": "USD",
					"REVENUE" : 50000,				
					"EMPLOYEES": "EMPLOYEES_3"
				}				
			}, 
			function(result) 
			{
				if(result.error())
					console.error(result.error());
				else
				{
					console.info(result.data());						
				}
			}
		);	


© «Bitrix24», 2001-2024
Up