mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-16 11:38:11 +02:00
71 lines
2.0 KiB
Markdown
71 lines
2.0 KiB
Markdown
|
---
|
||
|
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 a single post target: UA all, SG<X> work group, U<X> user, DR<X> depart., G<X> group |
|
||
|
| Files | --files | String | Data inложенandй, где toлюч > name file, value > path to file andдand дinоandчные 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
|
||
|
|
||
|
```bsl title="Code example"
|
||
|
|
||
|
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);
|
||
|
|
||
|
```
|
||
|
|
||
|
```sh title="CLI command example"
|
||
|
|
||
|
oint bitrix24 UpdatePost --url "b24-ar17wx.bitrix24.by" --postid "122" --text %text% --vision %vision% --files %files% --title %title% --token "b9df7366006e9f06006b12e400000001000..."
|
||
|
|
||
|
```
|
||
|
|
||
|
|
||
|
```json title="Result"
|
||
|
|
||
|
{
|
||
|
"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
|
||
|
}
|
||
|
}
|
||
|
|
||
|
```
|