mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-16 11:38:11 +02:00
47 lines
1.0 KiB
Markdown
47 lines
1.0 KiB
Markdown
|
---
|
||
|
sidebar_position: 3
|
||
|
---
|
||
|
|
||
|
# Get storage
|
||
|
Get information about storage
|
||
|
|
||
|
|
||
|
*Function GetStorage(Val URL, Val StorageID, Val Token = "") Export*
|
||
|
|
||
|
| Parameter | CLI option | Type | Destination |
|
||
|
|-|-|-|-|
|
||
|
| URL | --url | String | URL of webhook or a Bitrix24 domain, when token used |
|
||
|
| StorageID | --storageid | String, Number | Storage ID |
|
||
|
| Token | --token | String | Access token, when not-webhook method used |
|
||
|
|
||
|
|
||
|
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
|
||
|
|
||
|
```bsl title="Code example"
|
||
|
|
||
|
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
|
||
|
StorageID = 3;
|
||
|
|
||
|
Result = OPI_Bitrix24.GetStorage(URL, StorageID);
|
||
|
|
||
|
|
||
|
URL = "b24-ar17wx.bitrix24.by";
|
||
|
Token = "b9df7366006e9f06006b12e400000001000...";
|
||
|
|
||
|
Result = OPI_Bitrix24.GetStorage(URL, StorageID, Token);
|
||
|
|
||
|
```
|
||
|
|
||
|
```sh title="CLI command example"
|
||
|
|
||
|
oint bitrix24 GetStorage --url "b24-ar17wx.bitrix24.by" --storageid %storageid% --token "b9df7366006e9f06006b12e400000001000..."
|
||
|
|
||
|
```
|
||
|
|
||
|
|
||
|
```json title="Result"
|
||
|
|
||
|
|
||
|
|
||
|
```
|