1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00
Files
OpenIntegrations/docs/en/md/Bitrix24/Comments-and-results-management/Get-results-list.mdx
Vitaly the Alpaca (bot) 84bd7e0360 Main build (Jenkins)
2025-10-15 14:32:00 +03:00

109 lines
2.8 KiB
Plaintext
Vendored

---
sidebar_position: 6
description: Get results list and other functions to work with Bitrix24 in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Bitrix24]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get results list
Gets results list for task
`Function GetResultsList(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Required | 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: [tasks.task.result.list](https://dev.1c-bitrix.ru/rest_help/tasks/task/tasks/tasks_task_result.list.php)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/h0m...";
TaskID = "8354";
Result = OPI_Bitrix24.GetResultsList(URL, TaskID);
URL = "b24-ar17wx.bitrix24.by";
Token = "8a1bee68006e9f06006b12e400000001000...";
Result = OPI_Bitrix24.GetResultsList(URL, TaskID, Token);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint bitrix24 GetResultsList \
--url "b24-ar17wx.bitrix24.by" \
--task "8404" \
--token "***"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint bitrix24 GetResultsList ^
--url "b24-ar17wx.bitrix24.by" ^
--task "8404" ^
--token "***"
```
</TabItem>
</Tabs>
```json title="Result"
{
"result": [
{
"id": 3110,
"taskId": 8404,
"commentId": 19524,
"createdBy": 1,
"createdAt": "2025-10-15T09:52:31+00:00",
"updatedAt": "2025-10-15T09:52:31+00:00",
"status": 0,
"text": "The task has been changed, let's split up",
"formattedText": "The task has been changed, let's split up",
"files": []
},
{
"id": 3108,
"taskId": 8404,
"commentId": 19522,
"createdBy": 1,
"createdAt": "2025-10-15T09:52:29+00:00",
"updatedAt": "2025-10-15T09:52:29+00:00",
"status": 0,
"text": "The task has been changed, do not split up",
"formattedText": "The task has been changed, do not split up",
"files": []
}
],
"time": {
"start": 1760521966,
"finish": 1760521967.02307,
"duration": 1.02307200431824,
"processing": 0,
"date_start": "2025-10-15T09:52:46+00:00",
"date_finish": "2025-10-15T09:52:47+00:00",
"operating_reset_at": 1760522567,
"operating": 0
}
}
```