1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-25 12:24:39 +02:00
Vitaly the Alpaca (bot) 36a4920eb7 Main build (Jenkins)
2025-01-11 21:13:24 +03:00

96 lines
2.6 KiB
Plaintext
Vendored

---
sidebar_position: 6
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# 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
<br/>
:::tip
Method at API documentation: [user.update](https://dev.1c-bitrix.ru/rest_help/users/user_update.php)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
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 = "14bb8267006e9f06006b12e400000001000...";
FilterStructure = New Structure;
FilterStructure.Insert("UF_DEPARTMENT_NAME", "Bitrix");
Result = OPI_Bitrix24.FindUsers(URL, FilterStructure, Token);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# 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 "***"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: 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 "***"
```
</TabItem>
</Tabs>
```json title="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
}
}
```