1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-05-27 23:07:37 +02:00

70 lines
1.7 KiB
Markdown
Raw Normal View History

---
sidebar_position: 2
---
# Get task comment
Gets task comment data by ID
`Function GetTaskComment(Val URL, Val TaskID, Val CommentID, 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 |
| CommentID | --comment | Number, String | CommentID |
| 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.get](https://dev.1c-bitrix.ru/rest_help/tasks/task/commentitem/get.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
CommentID = "6054";
TaskID = "2450";
2024-08-13 16:47:32 +03:00
Result = OPI_Bitrix24.GetTaskComment(URL, TaskID, CommentID);
2024-09-24 11:38:18 +03:00
URL = "b24-ar17wx.bitrix24.by";
2024-10-15 10:07:27 +03:00
Token = "21750a67006e9f06006b12e400000001000...";
CommentID = "6056";
2024-08-13 16:47:32 +03:00
Result = OPI_Bitrix24.GetTaskComment(URL, TaskID, CommentID, Token);
```
2024-10-15 09:53:37 +03:00
```json title="Result"
2024-08-14 09:06:31 +03:00
{
2024-10-06 16:55:08 +03:00
"result": {
"POST_MESSAGE_HTML": null,
2024-10-09 09:42:00 +03:00
"ID": "5946",
"AUTHOR_ID": "1",
2024-10-06 16:55:08 +03:00
"AUTHOR_NAME": "Антон Титовец",
"AUTHOR_EMAIL": "",
2024-10-09 09:42:00 +03:00
"POST_DATE": "2024-10-09T09:19:54+03:00",
"POST_MESSAGE": "The task has been changed, let's split up"
2024-10-06 16:55:08 +03:00
},
"time": {
2024-10-09 09:42:00 +03:00
"start": 1728454795.75017,
"finish": 1728454795.79802,
"duration": 0.0478498935699463,
"processing": 0.02128005027771,
"date_start": "2024-10-09T09:19:55+03:00",
"date_finish": "2024-10-09T09:19:55+03:00",
"operating_reset_at": 1728455395,
"operating": 0
2024-10-06 16:55:08 +03:00
}
}
```