v51

OpenAPI 3.0.0EUPLraw.githubusercontent.com2026-08-01133591927.1 KB
Engine

Retrieve OIBus information

Returns version and system information about the OIBus instance

get/api/engine/info

Response

OIBus information including version, build, and system details

versionstring required

The version of OIBus.

launcherVersionstring required

The version of the launcher.

oibusNamestring required

The name of the OIBus instance.

oibusIdstring required

The ID of the OIBus instance.

dataDirectorystring required

The data directory for OIBus.

binaryDirectorystring required

The binary directory for OIBus.

processIdstring required

The process ID of the OIBus instance.

hostnamestring required

The hostname of the machine running OIBus.

operatingSystemstring required

The operating system of the machine.

architecturestring required

The architecture of the machine.

platformstring required

The platform of the machine.

Example response

{
  "version": "3.7.0",
  "launcherVersion": "3.7.0",
  "oibusName": "OIBus OT",
  "oibusId": "aBc12F",
  "dataDirectory": "/var/lib/oibus",
  "binaryDirectory": "/usr/lib/oibus",
  "processId": "12345",
  "hostname": "server1",
  "operatingSystem": "linux",
  "architecture": "x64",
  "platform": "ubuntu"
}