1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-23 22:05:15 +02:00
Files
OpenIntegrations/docs/en/md/GreenMax/Account/Set-instance-settings.mdx
Vitaly the Alpaca (bot) 4282f57c7d Main build (Jenkins)
2025-10-18 14:55:14 +03:00

53 lines
1.7 KiB
Plaintext
Vendored

---
sidebar_position: 4
description: Set instance settings and other functions to work with Green Max in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Green Max]
---
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/v3/docs/api/account/SetSettings/)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
ApiUrl = "https://3100.api.green-api.com/v3";
MediaUrl = "https://3100.api.green-api.com/v3";
IdInstance = "31003...";
ApiTokenInstance = "17915d8e0b4b4975a183478da...";
AccessParameters = OPI_GreenMax.FormAccessParameters(ApiUrl, MediaUrl, IdInstance, ApiTokenInstance);
SettingsStructure = New Structure;
SettingsStructure.Insert("markIncomingMessagesReaded" , "no");
SettingsStructure.Insert("outgoingWebhook" , "no");
SettingsStructure.Insert("outgoingAPIMessageWebhook" , "yes");
Result = OPI_GreenMax.SetInstanceSettings(SettingsStructure, AccessParameters);
```