Get storage for application data
Get information about storage with which the application can work to store its data
Function GetAppSotrage(Val URL, Val Token = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
URL | --url | String | ✔ | URL of webhook or a Bitrix24 domain, when token used |
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: disk.storage.getforapp
1C:Enterprise/OneScript code example
URL = "b24-ar17wx.bitrix24.by";
Token = "fe3fa966006e9f06006b12e400000001000...";
Result = OPI_Bitrix24.GetAppSotrage(URL, Token);
- Bash
- CMD/Bat
oint bitrix24 GetAppSotrage \
--url "b24-ar17wx.bitrix24.by" \
--token "***"
oint bitrix24 GetAppSotrage ^
--url "b24-ar17wx.bitrix24.by" ^
--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": 1728454799.05907,
"finish": 1728454799.09081,
"duration": 0.0317399501800537,
"processing": 0.00446605682373047,
"date_start": "2024-10-09T09:19:59+03:00",
"date_finish": "2024-10-09T09:19:59+03:00",
"operating_reset_at": 1728455399,
"operating": 0
}
}