2025-02-23 12:59:52 +03:00
|
|
|
---
|
2025-03-01 16:51:02 +03:00
|
|
|
sidebar_position: 3
|
2025-02-23 12:59:52 +03:00
|
|
|
---
|
|
|
|
|
|
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
|
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
|
|
|
|
|
|
# Get instance settings
|
|
|
|
|
Gets the current instance settings
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
`Function GetInstanceSettings(Val AccessParameters) Export`
|
|
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|
|
|
|-|-|-|-|-|
|
|
|
|
|
| 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: [GetSettings](https://green-api.com/docs/api/account/GetSettings/)
|
|
|
|
|
:::
|
|
|
|
|
<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);
|
|
|
|
|
Result = OPI_GreenAPI.GetInstanceSettings(AccessParameters);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-03-18 10:00:47 +03:00
|
|
|
```json title="Result"
|
|
|
|
|
{
|
|
|
|
|
"wid": "1234567890@c.us",
|
|
|
|
|
"countryInstance": "",
|
|
|
|
|
"typeAccount": "",
|
|
|
|
|
"webhookUrl": "",
|
|
|
|
|
"webhookUrlToken": "",
|
|
|
|
|
"delaySendMessagesMilliseconds": 0,
|
|
|
|
|
"markIncomingMessagesReaded": "no",
|
|
|
|
|
"markIncomingMessagesReadedOnReply": "no",
|
|
|
|
|
"sharedSession": "no",
|
|
|
|
|
"proxyInstance": "system proxy",
|
|
|
|
|
"outgoingWebhook": "no",
|
|
|
|
|
"outgoingMessageWebhook": "no",
|
|
|
|
|
"outgoingAPIMessageWebhook": "yes",
|
|
|
|
|
"incomingWebhook": "no",
|
|
|
|
|
"deviceWebhook": "no",
|
|
|
|
|
"statusInstanceWebhook": "no",
|
|
|
|
|
"stateWebhook": "no",
|
|
|
|
|
"enableMessagesHistory": "no",
|
|
|
|
|
"keepOnlineStatus": "no",
|
|
|
|
|
"pollMessageWebhook": "yes",
|
|
|
|
|
"incomingBlockWebhook": "no",
|
|
|
|
|
"incomingCallWebhook": "no",
|
|
|
|
|
"editedMessageWebhook": "yes",
|
|
|
|
|
"deletedMessageWebhook": "yes"
|
|
|
|
|
}
|
|
|
|
|
```
|