mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-02-09 13:47:03 +02:00
68 lines
1.6 KiB
Plaintext
68 lines
1.6 KiB
Plaintext
---
|
|
sidebar_position: 4
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Rename storage
|
|
Change storage name (for app storage only, see. GetAppStorage)
|
|
|
|
|
|
|
|
`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
|
|
|
|
<br/>
|
|
|
|
:::tip
|
|
Method at API documentation: [disk.storage.rename](https://dev.1c-bitrix.ru/rest_help/disk/storage/disk_storage_rename.php)
|
|
:::
|
|
<br/>
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
Name = "New storage name";
|
|
URL = "b24-ar17wx.bitrix24.by";
|
|
Token = "a2630f67006e9f06006b12e400000001000...";
|
|
StorageID = "18";
|
|
|
|
Result = OPI_Bitrix24.RenameStorage(URL, StorageID, Name, Token);
|
|
```
|
|
|
|
|
|
|
|
|
|
```json title="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": 1728454799.15146,
|
|
"finish": 1728454799.18227,
|
|
"duration": 0.0308098793029785,
|
|
"processing": 0.00592279434204102,
|
|
"date_start": "2024-10-09T09:19:59+03:00",
|
|
"date_finish": "2024-10-09T09:19:59+03:00",
|
|
"operating_reset_at": 1728455399,
|
|
"operating": 0
|
|
}
|
|
}
|
|
```
|