1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Bitrix24/Feed-posts-managment/Update-post.md

2.1 KiB

sidebar_position
2

Update post

Change post data

Function UpdatePost(Val URL, Val PostID, Val Text, Val Visibility = "UA", Val Files = "", Val Title = "", 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 Post ID
Text --text String Text of post
Visibility --vision String Array or 1 recipient: UA all, SGn w. group, Un user, DRn department, Gn group
Files --files Map Of KeyAndValue Key > file name, value > path or binary data
Title --title String Post title
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.update :::

 Text = "New post text";
 Title = "New post title";
 Image1 = "https://openintegrations.dev/test_data/picture.jpg";
 PostID = "124";
 
 Files = New Map;
 Files.Insert("1.png", Image1);
 
 URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
 
 Result = OPI_Bitrix24.UpdatePost(URL, PostID, Text,, Files, Title);
 
 
 URL = "b24-ar17wx.bitrix24.by";
 Token = "b9df7366006e9f06006b12e400000001000...";
 PostID = "122";
 
 Result = OPI_Bitrix24.UpdatePost(URL, PostID, Text,, Files, Title, Token);
 
 oint bitrix24 UpdatePost --url "b24-ar17wx.bitrix24.by" --postid "122" --text %text% --vision %vision% --files %files% --title %title% --token "b9df7366006e9f06006b12e400000001000..."

{
 "result": 86,
 "time": {
 "start": 1718473311.53949,
 "finish": 1718473311.89214,
 "duration": 0.352643966674805,
 "processing": 0.326650142669678,
 "date_start": "2024-06-15T17:41:51+00:00",
 "date_finish": "2024-06-15T17:41:51+00:00",
 "operating_reset_at": 1718473911,
 "operating": 0.326629877090454
 }
}