GetConnectInfo

Bizerba SOAP API (_connect.BRAIN)Direct Communication TCP/IP

x

GetConnectInfo provides general information about the connected devices that can be reached via _connect.BRAIN.

Example Request

let result = await app.businessFunction({
  //Common Parameters for all functions
  functionName: "BizerbaSoap",
  methodName: "GetConnectInfo",
  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

[
  {
    "category": "Labeler",
    "name": "GLPmaxx",
    "state": "Active",
    "type": "GLP",
    "unicodeDevice": true
  }
]

Last updated