1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-23 21:29:38 +02:00
2024-08-13 16:37:03 +03:00

1.2 KiB

sidebar_position
17

Get user status

Gets the status (online) of the current user

Function GetUserStatus(Val URL, Val Token = "") Export

Parameter CLI option Type Description
URL --url String URL of webhook or a Bitrix24 domain, when token used
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.status.get :::

  URL = "https://b24-ar17wx.bitrix24.by/rest/1/f2ppp8uucc891111/";
  
  Result = OPI_Bitrix24.GetUserStatus(URL);
  
  URL   = "b24-ar17wx.bitrix24.by";
  Token = "fe3fa966006e9f06006b12e400000001000...";
  
  Result = OPI_Bitrix24.GetUserStatus(URL, Token);
    
  oint bitrix24 GetUserStatus --url "b24-ar17wx.bitrix24.by" --token "fe3fa966006e9f06006b12e400000001000..."

{
  "error": "expired_token",
  "error_description": "The access token provided has expired."
  }