1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-25 12:24:39 +02:00
Vitaly the Alpaca (bot) 1fe02a52ea Main build (Jenkins)
2024-10-06 16:55:08 +03:00

1.8 KiB

sidebar_position
sidebar_position
1

Add tasks checklist element

Adds new element of tasks checklist

Function AddTasksChecklistElement(Val URL, Val TaskID, Val Text, Val Completed = False, 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
Text --text String Text (title) of checklist element
Completed --complete Boolean Mark as completed
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: task.checklistitem.add :::

    URL    = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
    TaskID = "2262";

    Text = "Checklist element";

    Result = OPI_Bitrix24.AddTasksChecklistElement(URL, TaskID, Text, True);

    URL    = "b24-ar17wx.bitrix24.by";
    Token  = "37d1fe66006e9f06006b12e400000001000...";
    TaskID = "2264";

    Result = OPI_Bitrix24.AddTasksChecklistElement(URL, TaskID, Text, , Token);
    
  oint bitrix24 AddTasksChecklistElement --url "b24-ar17wx.bitrix24.by" --task "1080" --text "Checklist element" --complete %complete% --token "fe3fa966006e9f06006b12e400000001000..."

{
 "result": 1396,
 "time": {
  "start": 1728140728.7262,
  "finish": 1728140728.79716,
  "duration": 0.0709609985351562,
  "processing": 0.0449769496917725,
  "date_start": "2024-10-05T18:05:28+03:00",
  "date_finish": "2024-10-05T18:05:28+03:00",
  "operating_reset_at": 1728141328,
  "operating": 0
 }
}