mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-06-08 23:56:33 +02:00
39 lines
961 B
Plaintext
39 lines
961 B
Plaintext
|
---
|
||
|
sidebar_position: 1
|
||
|
---
|
||
|
|
||
|
import Tabs from '@theme/Tabs';
|
||
|
import TabItem from '@theme/TabItem';
|
||
|
|
||
|
# Get basic data structure
|
||
|
Returns the basic data for request in structured form
|
||
|
|
||
|
|
||
|
|
||
|
`Function GetBasicDataStructure(Val URL, Val AccessKey, Val SecretKey, Val Region, Val Service = "s3") Export`
|
||
|
|
||
|
| Parameter | CLI option | Type | Required | Description |
|
||
|
|-|-|-|-|-|
|
||
|
| URL | --url | String | ✔ | URL: domain for common methods or full URL with parameters for methods of direct request sending |
|
||
|
| AccessKey | --access | String | ✔ | Access key for authorization |
|
||
|
| SecretKey | --secret | String | ✔ | Secret key for authorization |
|
||
|
| Region | --region | String | ✔ | Service region |
|
||
|
| Service | --service | String | ✖ | Type of service, if different from s3 |
|
||
|
|
||
|
|
||
|
Returns: Structure of KeyAndValue - Basic request data structure
|
||
|
|
||
|
<br/>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
```bsl title="1C:Enterprise/OneScript code example"
|
||
|
|
||
|
```
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|