mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
44 lines
988 B
Markdown
44 lines
988 B
Markdown
|
---
|
||
|
sidebar_position: 2
|
||
|
---
|
||
|
|
||
|
# 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 | Destination |
|
||
|
|-|-|-|-|
|
||
|
| URL | --url | String | URL of webhook or a Bitrix24 domain, when token used |
|
||
|
| Token | --token | String | Access token, when not-webhook method used |
|
||
|
|
||
|
|
||
|
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
|
||
|
|
||
|
<br/>
|
||
|
|
||
|
:::tip
|
||
|
Method at API documentation: [disk.storage.getforapp](https://dev.1c-bitrix.ru/rest_help/disk/storage/disk_storage_getforapp.php)
|
||
|
:::
|
||
|
<br/>
|
||
|
|
||
|
|
||
|
```bsl title="Code example"
|
||
|
URL = "b24-ar17wx.bitrix24.by";
|
||
|
Token = "b9df7366006e9f06006b12e400000001000...";
|
||
|
|
||
|
Result = OPI_Bitrix24.GetAppSotrage(URL, Token);
|
||
|
```
|
||
|
|
||
|
|
||
|
|
||
|
```sh title="CLI command example"
|
||
|
|
||
|
oint bitrix24 GetAppSotrage --url "b24-ar17wx.bitrix24.by" --token "b9df7366006e9f06006b12e400000001000..."
|
||
|
|
||
|
```
|
||
|
|
||
|
|