You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-07-05 00:58:52 +02:00
54 lines
1.5 KiB
Plaintext
Vendored
54 lines
1.5 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 3
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Set instance settings
|
|
Sets the instance settings
|
|
|
|
|
|
|
|
`Function SetInstanceSettings(Val Settings, Val AccessParameters) Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| Settings | --settings | Structure Of KeyAndValue | ✔ | Instance settings. See GetInstanceSettingsStructure |
|
|
| AccessParameters | --access | Structure Of KeyAndValue | ✔ | Access parameters. See FormAccessParameters |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Green API
|
|
|
|
<br/>
|
|
|
|
:::tip
|
|
Method at API documentation: [SetSettings](https://green-api.com/docs/api/account/SetSettings/)
|
|
:::
|
|
<br/>
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
ApiUrl = "https://7105.api.greenapi.com";
|
|
MediaUrl = "https://7105.media.greenapi.com";
|
|
IdInstance = "71051...";
|
|
ApiTokenInstance = "425010d90e114aa6b78f0969e...";
|
|
|
|
AccessParameters = OPI_GreenAPI.FormAccessParameters(ApiUrl, MediaUrl, IdInstance, ApiTokenInstance);
|
|
|
|
SettingsStructure = New Structure;
|
|
SettingsStructure.Insert("pollMessageWebhook" , "yes");
|
|
SettingsStructure.Insert("incomingBlockWebhook" , "no");
|
|
SettingsStructure.Insert("incomingCallWebhook" , "no");
|
|
SettingsStructure.Insert("editedMessageWebhook" , "yes");
|
|
SettingsStructure.Insert("deletedMessageWebhook", "yes");
|
|
|
|
Result = OPI_GreenAPI.SetInstanceSettings(SettingsStructure, AccessParameters);
|
|
```
|
|
|
|
|
|
|
|
|
|
|