--- sidebar_position: 7 description: Get instance status 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'; # Get instance status Gets instance status `Function GetInstanceStatus(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
:::tip Method at API documentation: [GetStateInstance](https://green-api.com/v3/docs/api/account/GetStateInstance/) :::
```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); Result = OPI_GreenMax.GetInstanceStatus(AccessParameters); ```