crm.company.userfield.update
Scope: catalog Permissions to execute: for all
crm.company.userfield.update(id, fields)
Updates the existing user field for company.
Parameters
Parameter | Description |
---|---|
id | User field ID. |
fields | Set of fields - is an array ("updated field"=>"value"[, ...]), where "updated field" can have values, returned by crm.userfield.fields method. |
LIST | Contains set of list values for additional custom List fields. Indicated when creating/updating a field. Each value is an array with fields:
|
Example
var id = prompt("Enter ID"); var label = prompt("Enter new name"); BX24.callMethod( "crm.company.userfield.update", { id: id, fields: { "EDIT_FORM_LABEL": label, "LIST_COLUMN_LABEL": label } }, function(result) { if(result.error()) console.error(result.error()); else { console.dir(result.data()); if(result.more()) result.next(); } } );
© «Bitrix24», 2001-2024