1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/Bitrix24/Feed-posts-managment/Get-important-post-viewers.md
2024-07-10 14:24:11 +03:00

1.6 KiB

sidebar_position
4

Get list of important post viewers

Return list of important post viewers ids


Function GetImportantPostViewers(Val URL, Val PostID, Val Token = "") Export

Parameter CLI option Type Destination
URL --url String URL of webhook or a Bitrix24 domain, when token used
PostID --postid String, Number Id of important post
Token --token String Access token, when not-webhook method used

Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API


:::tip Method at API documentation: log.blogpost.getusers.important :::

 PostID = "122";
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
 
 Result = OPI_Bitrix24.GetImportantPostViewers(URL, PostID);
 
 
 URL = "b24-ar17wx.bitrix24.by";
 Token = "b9df7366006e9f06006b12e400000001000...";
 
 Result = OPI_Bitrix24.GetImportantPostViewers(URL, PostID, Token);
 
 oint bitrix24 GetImportantPostViewers --url "b24-ar17wx.bitrix24.by" --postid "122" --token "b9df7366006e9f06006b12e400000001000..."

{
 "result": [
 "1"
 ],
 "time": {
 "start": 1718304109.47482,
 "finish": 1718304109.50417,
 "duration": 0.0293447971343994,
 "processing": 0.000212907791137695,
 "date_start": "2024-06-13T18:41:49+00:00",
 "date_finish": "2024-06-13T18:41:49+00:00",
 "operating_reset_at": 1718304709,
 "operating": 0
 }
}