Rename storage
Change storage name (for app storage only, see. GetAppStorage)
- Parameters
- Advanced call ?
Function RenameStorage(Val URL, Val StorageID, Val Name, Val Token = "") Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| URL | --url | String | ✔ | URL of webhook or a Bitrix24 domain, when token used |
| StorageID | --storageid | String, Number | ✔ | Storage ID |
| Name | --title | String | ✔ | New storage name |
| Token | --token | String | ✖ | Access token, when app auth method used |
Returns
Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
| Parameter | Description |
|---|---|
| proxy | InternetProxy or a structure with fields Protocol, Host, Port, User, Password, UseOSAuthentication |
| timeout | Request execution timeout |
| adv_response | Formats the response as a complete HTTP structure with fields code, body, and headers |
| retries | Number of HTTP request send attempts on 5** status codes or internal client errors |
| dontwait | Creates a background job and returns its data (for 1C and OneScript only) |
tip
Method at API documentation: disk.storage.rename
1C:Enterprise/OneScript code example
Name = "New storage name";
URL = "b24-ar17wx.bitrix24.by";
Token = "a5b00469006e9f06006b12e400000001000...";
StorageID = "18";
Result = OPI_Bitrix24.RenameStorage(URL, StorageID, Name, Token);
- Bash
- CMD/Bat
oint bitrix24 RenameStorage \
--url "b24-ar17wx.bitrix24.by" \
--storageid "18" \
--title "New storage name" \
--token "***"
oint bitrix24 RenameStorage ^
--url "b24-ar17wx.bitrix24.by" ^
--storageid "18" ^
--title "New storage name" ^
--token "***"
Result
{
"result": {
"ID": "18",
"NAME": "New storage name",
"CODE": null,
"MODULE_ID": "disk",
"ENTITY_TYPE": "restapp",
"ENTITY_ID": "2",
"ROOT_OBJECT_ID": "464"
},
"time": {
"start": 1781804585,
"finish": 1781804585.93756,
"duration": 0.937557935714722,
"processing": 0,
"date_start": "2026-06-18T17:43:05+00:00",
"date_finish": "2026-06-18T17:43:05+00:00",
"operating_reset_at": 1781805185,
"operating": 0
}
}