1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-29 21:57:16 +02:00
Vitaly the Alpaca (bot) 46738397c5 Main build (Jenkins)
2024-10-09 09:42:00 +03:00

2.2 KiB

sidebar_position
4

Get users

Get users information for dialog

Function GetUsers(Val URL, Val UserIDs, Val Token = "") Export

Parameter CLI option Type Description
URL --url String URL of webhook or a Bitrix24 domain, when token used
UserIDs --users Array of String, Number Usesr ID or array of users IDs
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: im.user.list.get :::

    URL          = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
    ArrayOfUsers = New Array;

    ArrayOfUsers.Add(1);
    ArrayOfUsers.Add(10);

    Result = OPI_Bitrix24.GetUsers(URL, ArrayOfUsers);

    URL     = "b24-ar17wx.bitrix24.by";
    Token   = "37d1fe66006e9f06006b12e400000001000...";
    UserIDs = 10;

    Result = OPI_Bitrix24.GetUsers(URL, UserIDs, Token);
    
  oint bitrix24 GetUsers --url "b24-ar17wx.bitrix24.by" --users "10" --token "fe3fa966006e9f06006b12e400000001000..."

{
 "result": {
  "10": {
   "id": 10,
   "active": true,
   "name": "Techno Pizza",
   "first_name": "Techno",
   "last_name": "Pizza",
   "work_position": null,
   "color": "#ab7761",
   "avatar": "",
   "gender": "M",
   "birthday": "",
   "extranet": false,
   "network": false,
   "bot": false,
   "connector": false,
   "external_auth_id": "socservices",
   "status": "online",
   "idle": false,
   "last_activity_date": "2024-07-13T21:36:23+03:00",
   "mobile_last_date": false,
   "absent": false,
   "departments": [
    1,
    264
   ],
   "phones": false
  }
 },
 "time": {
  "start": 1728454841.79577,
  "finish": 1728454841.82182,
  "duration": 0.0260539054870605,
  "processing": 0.00196313858032227,
  "date_start": "2024-10-09T09:20:41+03:00",
  "date_finish": "2024-10-09T09:20:41+03:00",
  "operating_reset_at": 1728455441,
  "operating": 0
 }
}