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/h0m...";
Result = OPI_Bitrix24.AddKanbanStage(URL, Name, Color, 6);
Name = "New stage 2";
Color = "0026FF";
URL = "b24-ar17wx.bitrix24.by";
Token = "bafe5c69006e9f06006b12e400000001000...";
PrevStageID = Result["result"];
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 3462 \
--admin true \
--token "***"
oint bitrix24 AddKanbanStage ^
--url "b24-ar17wx.bitrix24.by" ^
--title "New stage 2" ^
--color "0026FF" ^
--prevstage 3462 ^
--admin true ^
--token "***"
Result
{
"result": 3476,
"time": {
"start": 1767709304,
"finish": 1767709304.31473,
"duration": 0.314733982086182,
"processing": 0,
"date_start": "2026-01-06T14:21:44+00:00",
"date_finish": "2026-01-06T14:21:44+00:00",
"operating_reset_at": 1767709904,
"operating": 0
}
}