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
tip
Method at API documentation: tasks.task.result.list
1C:Enterprise/OneScript code example
URL = "https://b24-ar17wx.bitrix24.by/rest/1/h0m...";
TaskID = "7888";
Result = OPI_Bitrix24.GetResultsList(URL, TaskID);
URL = "b24-ar17wx.bitrix24.by";
Token = "75d8c668006e9f06006b12e400000001000...";
Result = OPI_Bitrix24.GetResultsList(URL, TaskID, Token);
- Bash
- CMD/Bat
oint bitrix24 GetResultsList \
--url ""b24-ar17wx.bitrix24.by"" \
--task ""7994"" \
--token "***"
oint bitrix24 GetResultsList ^
--url ""b24-ar17wx.bitrix24.by"" ^
--task ""7994"" ^
--token "***"
Result
{
"result": [
{
"id": 2946,
"taskId": 7994,
"commentId": 18616,
"createdBy": 1,
"createdAt": "2025-09-15T22:47:35+00:00",
"updatedAt": "2025-09-15T22:47:35+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": 2944,
"taskId": 7994,
"commentId": 18614,
"createdBy": 1,
"createdAt": "2025-09-15T22:47:32+00:00",
"updatedAt": "2025-09-15T22:47:32+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": 1757976469.71262,
"finish": 1757976469.75511,
"duration": 0.042496919631958,
"processing": 0.0111291408538818,
"date_start": "2025-09-15T22:47:49+00:00",
"date_finish": "2025-09-15T22:47:49+00:00",
"operating_reset_at": 1757977069,
"operating": 0
}
}