1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-17 12:06:34 +02:00

88 lines
2.1 KiB
Plaintext
Raw Normal View History

2024-10-15 10:50:56 +03:00
---
2024-10-15 10:16:04 +03:00
sidebar_position: 6
---
2024-10-15 10:50:56 +03:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2024-10-15 10:16:04 +03:00
# Add comment to post
Adds a comment to the post
`Function AddPostComment(Val URL, Val PostID, Val Text, Val Token = "") Export`
2024-10-15 15:15:47 +03:00
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| URL | --url | String | ✔ | URL of webhook or a Bitrix24 domain, when token used |
| PostID | --postid | String, Number | ✔ | Post ID |
| Text | --text | String | ✔ | Comment text |
| Token | --token | String | ✖ | Access token, when app auth method used |
2024-10-15 10:16:04 +03:00
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
2024-11-21 13:27:18 +03:00
Method at API documentation: [log.blogcomment.add](https://dev.1c-bitrix.ru/rest_help/log/log_blogcomment_add.php)
2024-10-15 10:16:04 +03:00
:::
<br/>
2024-12-16 19:38:57 +03:00
2024-10-15 21:15:56 +03:00
```bsl title="1C:Enterprise/OneScript code example"
2024-10-15 10:16:04 +03:00
Text = "Comment for post";
2024-12-24 20:21:21 +03:00
PostID = "1688";
2024-12-08 12:04:47 +03:00
URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
2024-10-15 10:16:04 +03:00
Result = OPI_Bitrix24.AddPostComment(URL, PostID, Text);
Text = "Another comment";
URL = "b24-ar17wx.bitrix24.by";
2024-12-24 20:21:21 +03:00
Token = "70f46a67006e9f06006b12e400000001000...";
2024-10-15 10:16:04 +03:00
Result = OPI_Bitrix24.AddPostComment(URL, PostID, Text, Token);
```
2024-10-20 22:36:03 +03:00
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint bitrix24 AddPostComment \
2024-10-22 08:59:24 +03:00
--url "b24-ar17wx.bitrix24.by" \
2024-12-25 11:43:34 +03:00
--postid 1704 \
2024-10-22 08:59:24 +03:00
--text "Another comment" \
--token "***"
2024-10-20 22:36:03 +03:00
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint bitrix24 AddPostComment ^
2024-10-22 08:59:24 +03:00
--url "b24-ar17wx.bitrix24.by" ^
2024-12-25 11:43:34 +03:00
--postid 1704 ^
2024-10-22 08:59:24 +03:00
--text "Another comment" ^
--token "***"
2024-10-20 22:36:03 +03:00
```
</TabItem>
</Tabs>
2024-10-15 10:16:04 +03:00
```json title="Result"
{
"result": 876,
"time": {
"start": 1728454764.93192,
"finish": 1728454765.05443,
"duration": 0.122506141662598,
"processing": 0.0952260494232178,
"date_start": "2024-10-09T09:19:24+03:00",
"date_finish": "2024-10-09T09:19:25+03:00",
"operating_reset_at": 1728455364,
"operating": 0
}
}
```