1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-28 05:46:35 +02:00
Vitaly the Alpaca (bot) 9c977d53e1 Main build (Jenkins)
2024-10-06 16:55:08 +03:00

2.2 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 Description
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 app auth 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://openyellow.neocities.org/test_data/picture.jpg"; // URL, Path or Binary Data
    PostID = "836";

    Files = New Map;
    Files.Insert("1.png", Image1);

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

    Result = OPI_Bitrix24.UpdatePost(URL, PostID, Text, , Files, Title);

    URL    = "b24-ar17wx.bitrix24.by";
    Token  = "37d1fe66006e9f06006b12e400000001000...";
    PostID = "834";

    Result = OPI_Bitrix24.UpdatePost(URL, PostID, Text, , Files, Title, Token);
    
  oint bitrix24 UpdatePost --url "b24-ar17wx.bitrix24.by" --postid "438" --text %text% --vision %vision% --files %files% --title %title% --token "fe3fa966006e9f06006b12e400000001000..."

{
 "result": 916,
 "time": {
  "start": 1728140708.9006,
  "finish": 1728140709.33918,
  "duration": 0.438586950302124,
  "processing": 0.406539916992188,
  "date_start": "2024-10-05T18:05:08+03:00",
  "date_finish": "2024-10-05T18:05:09+03:00",
  "operating_reset_at": 1728141308,
  "operating": 0.406512975692749
 }
}