2024-06-20 09:39:55 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 2
|
|
|
|
---
|
|
|
|
|
|
|
|
# Update post
|
|
|
|
Change post data
|
|
|
|
|
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
`Function UpdatePost(Val URL, Val PostID, Val Text, Val Visibility = "UA", Val Files = "", Val Title = "", Val Token = "") Export`
|
2024-06-20 09:39:55 +02:00
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
| 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 |
|
2024-06-20 09:39:55 +02:00
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
|
2024-06-20 09:39:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
<br/>
|
2024-07-10 13:05:58 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
:::tip
|
2024-07-30 21:48:29 +02:00
|
|
|
Method at API documentation: [log.blogpost.update](https://dev.1c-bitrix.ru/rest_help/log/log_blogpost_update.php)
|
2024-07-10 12:58:29 +02:00
|
|
|
:::
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
2024-06-20 09:39:55 +02:00
|
|
|
```bsl title="Code example"
|
2024-08-13 14:52:26 +02:00
|
|
|
Text = "New post text";
|
|
|
|
Title = "New post title";
|
2024-08-13 15:37:03 +02:00
|
|
|
Image1 = "https://openintegrations.dev/test_data/picture.jpg"; // URL, Path or Binary Data
|
|
|
|
PostID = "440";
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
Files = New Map;
|
|
|
|
Files.Insert("1.png", Image1);
|
|
|
|
|
2024-08-13 15:37:03 +02:00
|
|
|
URL = "https://b24-ar17wx.bitrix24.by/rest/1/f2ppp8uucc891111/";
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
Result = OPI_Bitrix24.UpdatePost(URL, PostID, Text, , Files, Title);
|
|
|
|
|
2024-08-13 15:37:03 +02:00
|
|
|
URL = "b24-ar17wx.bitrix24.by";
|
|
|
|
Token = "fe3fa966006e9f06006b12e400000001000...";
|
|
|
|
PostID = "438";
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
Result = OPI_Bitrix24.UpdatePost(URL, PostID, Text, , Files, Title, Token);
|
2024-06-20 09:39:55 +02:00
|
|
|
```
|
2024-08-13 14:52:26 +02:00
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-06-20 09:39:55 +02:00
|
|
|
|
|
|
|
```sh title="CLI command example"
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
oint bitrix24 UpdatePost --url "b24-ar17wx.bitrix24.by" --postid "438" --text %text% --vision %vision% --files %files% --title %title% --token "fe3fa966006e9f06006b12e400000001000..."
|
2024-06-20 09:39:55 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
2024-07-10 13:11:17 +02:00
|
|
|
{
|
2024-08-13 14:52:26 +02:00
|
|
|
"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
|
|
|
|
}
|
|
|
|
}
|
2024-06-20 09:39:55 +02:00
|
|
|
```
|