crm.contact.userfield.add
Scope: catalog Permissions to execute: for all
crm.contact.userfield.add(fields)
Creates a new user field for contacts.
System limitation for field name - 20 characters. Prefix UF_CRM_is always added to the user field name. As a result, the actual name length - 13 characters.
Parameters
Parameter | Description |
---|---|
fields | Set of fields - is an array ("field"=>"value"[, ...]), containing description of user field. |
LIST | Contains set of list values for additional custom List fields. Indicated when creating/updating a field. Each value is an array with fields:
|
Full description of fields can be retuned by calling crm.userfield.fields method.
Example #1
BX24.callMethod( "crm.contact.userfield.add", { fields: { "FIELD_NAME": "MY_STRING", "EDIT_FORM_LABEL": "My string", "LIST_COLUMN_LABEL": "My string", "USER_TYPE_ID": "string", "XML_ID": "MY_STRING", "SETTINGS": { "DEFAULT_VALUE": "Hello, world!" } } }, function(result) { if(result.error()) console.error(result.error()); else console.dir(result.data()); } );
Example #2
BX24.callMethod( "crm.contact.userfield.add", { fields: { "FIELD_NAME": "MY_LIST", "EDIT_FORM_LABEL": "My list", "LIST_COLUMN_LABEL": "My list", "USER_TYPE_ID": "enumeration", "LIST": [ { "VALUE": "Element #1" }, { "VALUE": "Element #2" }, { "VALUE": "Element #3" }, { "VALUE": "Element #4" }, { "VALUE": "Element #5" } ], "XML_ID": "MY_LIST", "SETTINGS": { "LIST_HEIGHT": 3 } } }, function(result) { if(result.error()) console.error(result.error()); else console.dir(result.data()); } );
© «Bitrix24», 2001-2024