# GetConnectVersion

| Bizerba SOAP API (\_connect.BRAIN) | Direct Communication TCP/IP |
| :--------------------------------: | :-------------------------: |
|                  ✓                 |              x              |

GetConnectVersion can be used to query the version of the \_connect.BRAIN. It is also well suited to check the accessibility of the Bizerba API.

### Example Request

```javascript
let result = await app.businessFunction({
  //Common Parameters for all functions
  functionName: "BizerbaSoap",
  methodName: "GetConnectVersion",
  silentMode: false, //false is default. If set to true, the Gebra Suite will not show an error message box. it is up to you to inform the user.
  
  url: "192.168.0.54", //The URL of Bizerba WebAPI
});
```

### Example Response

```json
{
  "getConnectVersionResult": "BCS 4.86.0.1"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://gebra-it.gitbook.io/wiki/client-api-reference/functions/businessfunction/bizerba-soap/getconnectversion.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
