Get a List of User Field Settings userfieldconfig.list
If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the MCP server so that the assistant can utilize the official REST documentation.
Scope:
userfieldconfig, module scope frommoduleId(for example,crm)Who can execute the method: a user with read access permission to the object that owns the fields in the
moduleId
The method userfieldconfig.list returns a list of user field settings based on the filter.
Method Parameters
Required parameters are marked with *
|
Name |
Description |
|
moduleId* |
The identifier of the module in which the fields are being searched |
|
select |
Set of fields to return (detailed description) |
|
order |
Object format:
Available fields for sorting:
By default:
|
|
filter |
Object format:
All conditions for individual fields are combined using |
|
start |
Offset for pagination. Use the |
Select Parameter
|
Name |
Description |
|
* |
Return all standard settings fields |
|
language |
Language identifier for language fields, for example |
|
id |
Identifier of the field setting |
|
entityId |
Identifier of the object |
|
fieldName |
Code of the field |
|
userTypeId |
Type of the field |
|
xmlId |
External identifier |
|
sort |
Sort index |
|
multiple |
Whether the user field is multiple. Possible values: |
|
mandatory |
Whether the user field is mandatory. Possible values: |
|
showFilter |
Whether to show the field in the list filter. Possible values: |
|
showInList |
Whether to show the field in the list. Possible values: |
|
editInList |
Whether to allow editing the value in the list. Possible values: |
|
isSearchable |
Whether the field values are searchable. Possible values: |
|
settings |
Additional settings for the field |
|
languageId |
Language identifier. When this parameter is passed, a set of language fields in the selected language is returned:
|
Filterable Fields
|
Name |
Description |
|
id |
Identifier of the user field |
|
fieldName |
Code of the user field |
|
userTypeId |
Type of the user field |
|
xmlId |
External code |
|
sort |
Sort index |
|
multiple |
Whether the user field is multiple. Possible values: |
|
mandatory |
Whether the user field is mandatory. Possible values: |
|
showFilter |
Whether to show in the list filter. Possible values: |
|
showInList |
Whether to show in the list. Possible values: |
|
editInList |
Whether to allow user editing. Possible values: |
|
isSearchable |
Whether the field values are searchable. Possible values: |
Code Examples
How to Use Examples in Documentation
curl -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"moduleId":"crm","select":{"0":"*","language":"de"},"order":{"id":"DESC"},"filter":{"multiple":"Y"},"start":0}' \
https://**put_your_bitrix24_address**/rest/**put_your_user_id_here**/**put_your_webhook_here**/userfieldconfig.list
curl -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"moduleId":"crm","select":{"0":"*","language":"de"},"order":{"id":"DESC"},"filter":{"multiple":"Y"},"start":0,"auth":"**put_access_token_here**"}' \
https://**put_your_bitrix24_address**/rest/userfieldconfig.list
try
{
const response = await $b24.callMethod(
'userfieldconfig.list',
{
moduleId: 'crm',
select: {
0: '*',
language: 'de',
},
order: {
id: 'DESC',
},
filter: {
multiple: 'Y',
},
start: 0,
}
);
const result = response.getData().result;
console.info(result);
}
catch (error)
{
console.error(error);
}
try {
$response = $b24Service
->core
->call(
'userfieldconfig.list',
[
'moduleId' => 'crm',
'select' => [
0 => '*',
'language' => 'de',
],
'order' => [
'id' => 'DESC',
],
'filter' => [
'multiple' => 'Y',
],
'start' => 0,
]
);
$result = $response
->getResponseData()
->getResult();
echo 'Result: ' . print_r($result, true);
} catch (Throwable $e) {
error_log($e->getMessage());
echo 'Error: ' . $e->getMessage();
}
BX24.callMethod(
'userfieldconfig.list',
{
moduleId: 'crm',
select: {
0: '*',
language: 'de',
},
order: {
id: 'DESC',
},
filter: {
multiple: 'Y',
},
},
(result) => {
if (result.error()) {
console.error(result.error());
return;
}
console.info(result.data());
if (result.more()) {
result.next();
}
},
);
require_once('crest.php');
$result = CRest::call(
'userfieldconfig.list',
[
'moduleId' => 'crm',
'select' => [
0 => '*',
'language' => 'de',
],
'order' => [
'id' => 'DESC',
],
'filter' => [
'multiple' => 'Y',
],
'start' => 0,
]
);
echo '<PRE>';
print_r($result);
echo '</PRE>';
Response Handling
HTTP Status: 200
{
"result": {
"fields": [
{
"id": "7095",
"entityId": "CRM_7",
"fieldName": "UF_CRM_7_NEW_REST_LIST_2026",
"userTypeId": "enumeration",
"xmlId": null,
"sort": "100",
"multiple": "Y",
"mandatory": "N",
"showFilter": "N",
"showInList": "Y",
"editInList": "Y",
"isSearchable": "N",
"settings": {
"DISPLAY": "LIST",
"LIST_HEIGHT": 1,
"CAPTION_NO_VALUE": "",
"SHOW_NO_VALUE": "Y"
},
"languageId": {
"de": "de"
},
"editFormLabel": {
"de": "List of Characteristics"
},
"listColumnLabel": null,
"listFilterLabel": null,
"errorMessage": null,
"helpMessage": null
}
]
},
"next": 50,
"total": 94,
"time": {
"start": 1724239307.903115,
"finish": 1724239308.567422,
"duration": 0.6643068790435791,
"processing": 0.20090818405151367,
"date_start": "2024-08-21T13:21:47+02:00",
"date_finish": "2024-08-21T13:21:48+02:00",
"operating": 0
}
}
Returned Data
|
Name |
Description |
|
result |
Root element of the response (detailed description) |
|
total |
Total number of settings found |
|
next |
Offset for the next page. Field is returned if the number of found items exceeds 50 |
|
time |
Information about the execution time of the request |
Result Object
|
Name |
Description |
|
fields |
List of found user field settings (detailed description) |
Fields Object[]
|
Name |
Description |
|
id |
Identifier of the user field |
|
entityId |
Identifier of the object to which the user field belongs |
|
fieldName |
Code of the user field |
|
userTypeId |
Type of the user field |
|
xmlId |
External code |
|
sort |
Sort index |
|
multiple |
Whether the user field is multiple. Possible values: |
|
mandatory |
Whether the user field is mandatory. Possible values: |
|
showFilter |
Display mode in the filter. Possible values: |
|
showInList |
Whether to show the field in the list. Possible values: |
|
editInList |
Whether to allow editing the value in the list. Possible values: |
|
isSearchable |
Whether the field values are searchable. Possible values: |
|
settings |
Additional settings for the field. The composition of keys depends on |
|
languageId |
Language identifiers for which labels are set |
|
editFormLabel |
Labels in the edit form |
|
listColumnLabel |
Header in the list |
|
listFilterLabel |
Label of the filter in the list |
|
errorMessage |
Error message |
|
helpMessage |
Help |
|
enum |
List elements for Field may be absent for other types |
Error Handling
HTTP Status: 400
{
"error": "",
"error_description": "You do not have permission to view user field settings"
}
|
Name |
Description |
|
error |
String error code. It may consist of digits, Latin letters, and underscores |
|
error_description |
Textual description of the error. The description is not intended to be shown to the end user in its raw form |
Possible Error Codes
|
Code |
Description |
Value |
|
|
You do not have permission to view user field settings |
Insufficient read access permission for fields based on the provided filter |
|
|
The current method required more scopes. (crm) |
The application does not have the required scope for the module from |
|
|
No settings for UserFieldAccess |
Access to user fields is not configured for the provided |
Statuses and System Error Codes
HTTP Status: 20x, 40x, 50x
The errors described below may occur when calling any method.
|
Status |
Code |
Description |
|
|
|
An internal server error has occurred. Please contact the server administrator or Bitrix24 technical support |
|
|
|
An internal server error has occurred. Please contact the server administrator or Bitrix24 technical support |
|
|
|
The request intensity limit has been exceeded |
|
|
|
The current method is not permitted for calls using batch |
|
|
|
The maximum length of parameters passed to the batch method has been exceeded |
|
|
|
Invalid access token or webhook code |
|
|
|
The HTTPS protocol is required for method calls |
|
|
|
The REST API is blocked due to overload. This is a manual individual block; please contact Bitrix24 technical support to lift it |
|
|
|
The REST API is only available on commercial plans |
|
|
|
The user associated with the access token or webhook used to call the method lacks the necessary permissions |
|
|
|
The manifest is not available |
|
|
|
The request requires higher privileges than those provided by the webhook token |
|
|
|
The provided access token has expired |
|
|
|
The user does not have access to the application. This means that the application is installed, but the portal administrator has restricted access to this application to specific users only |
|
|
|
The public part of the site is closed. To open the public part of the site on an on-premise installation, disable the "Temporary closure of the public part of the site" option. Path to the setting: Desktop > Settings > Product Settings > Module Settings > Main Module > Temporary closure of the public part of the site |
Continue Learning
- Add Custom Field userfieldconfig.add
- Update User Field userfieldconfig.update
- Get User Field Settings userfieldconfig.get
- Delete User Field userfieldconfig.delete
- Get Available User Field Types userfieldconfig.getTypes