1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-25 12:24:39 +02:00

83 lines
2.1 KiB
Markdown
Raw Normal View History

---
sidebar_position: 1
---
# Get comments list for a task
Get user comments list for a task
`Function GetTaskCommentsList(Val URL, Val TaskID, 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 |
| 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.getlist](https://dev.1c-bitrix.ru/rest_help/tasks/task/commentitem/getlist.php)
:::
<br/>
```bsl title="Code example"
2024-09-24 11:38:18 +03:00
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
2024-09-29 17:35:23 +03:00
TaskID = "2108";
2024-08-13 16:47:32 +03:00
Result = OPI_Bitrix24.GetTaskCommentsList(URL, TaskID);
2024-09-24 11:38:18 +03:00
URL = "b24-ar17wx.bitrix24.by";
2024-10-03 20:35:39 +03:00
Token = "37d1fe66006e9f06006b12e400000001000...";
2024-08-13 16:47:32 +03:00
Result = OPI_Bitrix24.GetTaskCommentsList(URL, TaskID, Token);
```
```sh title="CLI command example"
oint bitrix24 GetTaskCommentsList --url "b24-ar17wx.bitrix24.by" --task "1082" --token "fe3fa966006e9f06006b12e400000001000..."
```
```json title="Result"
2024-08-14 09:06:31 +03:00
{
2024-10-06 16:55:08 +03:00
"result": [
{
2024-10-06 16:55:08 +03:00
"POST_MESSAGE_HTML": null,
"ID": "5768",
"AUTHOR_ID": "1",
"AUTHOR_NAME": "Антон Титовец",
"AUTHOR_EMAIL": "",
"POST_DATE": "2024-10-05T18:05:35+03:00",
"POST_MESSAGE": "The task has been changed, do not split up"
},
{
2024-10-06 16:55:08 +03:00
"POST_MESSAGE_HTML": null,
"ID": "5770",
"AUTHOR_ID": "1",
"AUTHOR_NAME": "Антон Титовец",
"AUTHOR_EMAIL": "",
"POST_DATE": "2024-10-05T18:05:35+03:00",
"POST_MESSAGE": "The task has been changed, let's split up"
}
2024-10-06 16:55:08 +03:00
],
"time": {
"start": 1728140736.95489,
"finish": 1728140737.01096,
"duration": 0.0560650825500488,
"processing": 0.0290310382843018,
"date_start": "2024-10-05T18:05:36+03:00",
"date_finish": "2024-10-05T18:05:37+03:00",
"operating_reset_at": 1728141336,
"operating": 0
2024-10-06 16:55:08 +03:00
}
}
```