1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/md/GreenMax/Account/Send-authorization-code.mdx
Vitaly the Alpaca (bot) 1120c732f0 Main build (Jenkins)
2025-10-20 19:41:52 +03:00

49 lines
1.6 KiB
Plaintext
Vendored

---
sidebar_position: 6
description: Send authorization code 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';
# Send authorization code
Authorizes the instance using the access code from SMS
`Function SendAuthorizationCode(Val AccessParameters, Val AuthCode) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| AccessParameters | --access | Structure Of KeyAndValue | ✔ | Access parameters. See FormAccessParameters |
| AuthCode | --code | String | ✔ | Authorization code |
Returns: Map Of KeyAndValue - serialized JSON response from Green API
<br/>
:::tip
Method at API documentation: [SendAuthorizationCode](https://green-api.com/v3/docs/api/account/SendAuthorizationCode/)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
ApiUrl = FunctionParameters["GreenMax_ApiURL"];
MediaUrl = FunctionParameters["GreenMax_MediaURL"];
IdInstance = FunctionParameters["GreenMax_IdInstance"];
ApiTokenInstance = FunctionParameters["GreenMax_Token"];
AuthCode = 123456;
AccessParameters = OPI_GreenMax.FormAccessParameters(ApiUrl, MediaUrl, IdInstance, ApiTokenInstance);
Result = OPI_GreenMax.SendAuthorizationCode(AccessParameters, AuthCode);
```