Add kanban stage
Add new stage of kanban or My Plan
Function AddKanbanStage(Val URL, Val Name, Val Color = "FFD800", Val PrevStageID = 0, Val EntityID = 0, Val AsAdmin = False, Val Token = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
URL | --url | String | ✔ | URL of webhook or a Bitrix24 domain, when token used |
Name | --title | String | ✔ | New stage name |
Color | --color | String | ✖ | HEX of new stage color |
PrevStageID | --prevstage | String, Number | ✖ | ID of the stage after which a new stage should be inserted (at the beginning by default.) |
EntityID | --entityid | String, Number | ✖ | ID of kanban owner (group or user) |
AsAdmin | --admin | Boolean | ✖ | Allows you to add stages without checking permissions (for administrators) |
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.stages.add
1C:Enterprise/OneScript code example
Name = "New stage";
Color = "0026FF";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/yg2...";
Result = OPI_Bitrix24.AddKanbanStage(URL, Name, Color, 6);
PrevStageID = Result["result"];
Name = "New stage 2";
Color = "0026FF";
URL = "b24-ar17wx.bitrix24.by";
Token = "2f4e4067006e9f06006b12e400000001000...";
Result = OPI_Bitrix24.AddKanbanStage(URL, Name, Color, PrevStageID, , True, Token);
- Bash
- CMD/Bat
oint bitrix24 AddKanbanStage \
--url "b24-ar17wx.bitrix24.by" \
--title "New stage 2" \
--color "0026FF" \
--prevstage 1330 \
--admin true \
--token "***"
oint bitrix24 AddKanbanStage ^
--url "b24-ar17wx.bitrix24.by" ^
--title "New stage 2" ^
--color "0026FF" ^
--prevstage 1330 ^
--admin true ^
--token "***"
Result
{
"result": 846,
"time": {
"start": 1728454833.37133,
"finish": 1728454833.4508,
"duration": 0.0794661045074463,
"processing": 0.0516431331634522,
"date_start": "2024-10-09T09:20:33+03:00",
"date_finish": "2024-10-09T09:20:33+03:00",
"operating_reset_at": 1728455433,
"operating": 0
}
}