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 = "8622";
    Result = OPI_Bitrix24.GetResultsList(URL, TaskID);
    URL   = "b24-ar17wx.bitrix24.by";
    Token = "53100369006e9f06006b12e400000001000...";
    Result = OPI_Bitrix24.GetResultsList(URL, TaskID, Token);
- Bash
 - CMD/Bat
 
    oint bitrix24 GetResultsList \
     --url "b24-ar17wx.bitrix24.by" \
     --task "8672" \
     --token "***"
    oint bitrix24 GetResultsList ^
     --url "b24-ar17wx.bitrix24.by" ^
     --task "8672" ^
     --token "***"
Result
{
 "result": [
  {
   "id": 3236,
   "taskId": 8722,
   "commentId": 20226,
   "createdBy": 1,
   "createdAt": "2025-10-31T11:53:51+00:00",
   "updatedAt": "2025-10-31T11:53:51+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": 3234,
   "taskId": 8722,
   "commentId": 20224,
   "createdBy": 1,
   "createdAt": "2025-10-31T11:53:50+00:00",
   "updatedAt": "2025-10-31T11:53:50+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": 1761911636,
  "finish": 1761911636.45934,
  "duration": 0.459338903427124,
  "processing": 0,
  "date_start": "2025-10-31T11:53:56+00:00",
  "date_finish": "2025-10-31T11:53:56+00:00",
  "operating_reset_at": 1761912236,
  "operating": 0
 }
}