1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-05-29 23:17:45 +02:00

64 lines
1.5 KiB
Markdown
Raw Normal View History

---
sidebar_position: 3
---
# Add comment to task
Create new comment to the task
`Function AddTaskComment(Val URL, Val TaskID, Val Text, Val Token = "") Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| URL | --url | String | URL of webhook or a Bitrix24 domain, when token used |
| TaskID | --task | Number, String | Task ID |
| Text | --text | String | Comment text |
| Token | --token | String | Access token, when app auth method used |
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [task.commentitem.add](https://dev.1c-bitrix.ru/rest_help/tasks/task/commentitem/add.php)
:::
<br/>
```bsl title="Code example"
2024-09-24 11:38:18 +03:00
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
2024-10-15 10:07:27 +03:00
TaskID = "2450";
2024-08-13 16:47:32 +03:00
Text = "Task impossible, let's split up";
Result = OPI_Bitrix24.AddTaskComment(URL, TaskID, Text);
2024-09-24 11:38:18 +03:00
URL = "b24-ar17wx.bitrix24.by";
2024-10-15 10:07:27 +03:00
Token = "21750a67006e9f06006b12e400000001000...";
2024-08-13 16:47:32 +03:00
Text = "Task uninpossible, don't split up";
Result = OPI_Bitrix24.AddTaskComment(URL, TaskID, Text, Token);
```
2024-10-15 09:53:37 +03:00
```json title="Result"
2024-08-14 09:06:31 +03:00
{
2024-10-09 09:42:00 +03:00
"result": 5946,
2024-10-06 16:55:08 +03:00
"time": {
2024-10-09 09:42:00 +03:00
"start": 1728454794.0873,
"finish": 1728454794.25203,
"duration": 0.164731025695801,
"processing": 0.141225099563599,
"date_start": "2024-10-09T09:19:54+03:00",
"date_finish": "2024-10-09T09:19:54+03:00",
"operating_reset_at": 1728455394,
"operating": 0.141186952590942
2024-10-06 16:55:08 +03:00
}
}
```