Skip to main content

Move folder

Moves one folder inside another

Function MoveFolder(Val URL, Val FolderID, Val DestinationID, Val Token = "") Export

ParameterCLI optionTypeRequiredDescription
URL--urlStringURL of webhook or a Bitrix24 domain, when token used
FolderID--folderidString, NumberFolder identifier
DestinationID--tagetidString, NumberID of target folder
Token--tokenStringAccess token, when app auth method used

Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API

tip

Method at API documentation: disk.folder.moveto


1C:Enterprise/OneScript code example
    DestinationID = "50044";
FolderID = "50050";

URL = "https://b24-ar17wx.bitrix24.by/rest/1/h0m...";

Result = OPI_Bitrix24.MoveFolder(URL, FolderID, DestinationID);

FolderID = "50048";

URL = "b24-ar17wx.bitrix24.by";
Token = "bafe5c69006e9f06006b12e400000001000...";

Result = OPI_Bitrix24.MoveFolder(URL, FolderID, DestinationID, Token);
    oint bitrix24 MoveFolder \
--url "b24-ar17wx.bitrix24.by" \
--folderid 49994 \
--tagetid 49990 \
--token "***"
Result
{
"result": {
"ID": "50156",
"NAME": "New subfolder 2",
"CODE": null,
"STORAGE_ID": "3",
"TYPE": "folder",
"REAL_OBJECT_ID": "50156",
"PARENT_ID": 50152,
"DELETED_TYPE": "0",
"CREATE_TIME": "2026-01-06T14:21:23+00:00",
"UPDATE_TIME": "2026-01-06T14:21:25+00:00",
"DELETE_TIME": null,
"CREATED_BY": "1",
"UPDATED_BY": "1",
"DELETED_BY": "0",
"DETAIL_URL": "https://b24-ar17wx.bitrix24.by/docs/path/New folder 2/New subfolder 2"
},
"time": {
"start": 1767709295,
"finish": 1767709295.23762,
"duration": 0.237618923187256,
"processing": 0,
"date_start": "2026-01-06T14:21:35+00:00",
"date_finish": "2026-01-06T14:21:35+00:00",
"operating_reset_at": 1767709895,
"operating": 0
}
}