Find users
Gets the list of users according to the specified filter
Function FindUsers(Val URL, Val FilterStructure, Val Token = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
URL | --url | String | ✔ | URL of webhook or a Bitrix24 domain, when token used |
FilterStructure | --filter | Structure of KeyAndValue | ✔ | Filter. See GetUserFilterStructure |
Token | --token | String | ✖ | Access token, when app auth method used |
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
tip
Method at API documentation: user.update
1C:Enterprise/OneScript code example
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
FilterStructure = New Structure;
FilterStructure.Insert("NAME" , "Vitaly");
FilterStructure.Insert("LAST_NAME" , "Alpaca");
FilterStructure.Insert("WORK_POSITION" , "DevOps engineer");
FilterStructure.Insert("UF_DEPARTMENT_NAME", "Marketing department");
FilterStructure.Insert("USER_TYPE" , "employee");
Result = OPI_Bitrix24.FindUsers(URL, FilterStructure);
URL = "b24-ar17wx.bitrix24.by";
Token = "35c31667006e9f06006b12e400000001000...";
FilterStructure = New Structure;
FilterStructure.Insert("UF_DEPARTMENT_NAME", "Bitrix");
Result = OPI_Bitrix24.FindUsers(URL, FilterStructure, Token);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint bitrix24 FindUsers \
--url "b24-ar17wx.bitrix24.by" \
--filter "{'UF_DEPARTMENT_NAME':'Bitrix'}" \
--token "***"
:: JSON data can also be passed as a path to a .json file
oint bitrix24 FindUsers ^
--url "b24-ar17wx.bitrix24.by" ^
--filter "{'UF_DEPARTMENT_NAME':'Bitrix'}" ^
--token "***"
Result
{
"result": [],
"time": {
"start": 1728454935.77575,
"finish": 1728454935.81785,
"duration": 0.0420989990234375,
"processing": 0.0130829811096191,
"date_start": "2024-10-09T09:22:15+03:00",
"date_finish": "2024-10-09T09:22:15+03:00",
"operating_reset_at": 1728455535,
"operating": 0
}
}