RobotWare Version in OmniCore App SDK

Is there a way to get the version of RobotWare with the OmniCore App SDK? I can’t find it in the documentation

Hi,

Following is from the document.

image

If you mean to download RobotWare, you can open RobotStudio and download any version from the Add-ins tab. The add-in ‘RobotWare for OmniCore’ is the one to select and download.

I mean getting the version of RobotWare as a string via the SDK to display in a custom web app

const rwUrl = `/rw/system`;

const { response } = await RWS.Network.get(rwUrl);

const { state } = JSON.parse(response);

Instance.Text_4.text = state\[0\]\["rwversion"\];

https://127.0.0.1:80/rw/system return json like: “state”: [
{
“_type”: “sys-system”,
“_title”: “system”,
“major”: “7”,
“minor”: “18”,
“build”: “1905”,
“revision”: “0”,
“sub-revision”: “0”,
“buildtag”: “”,
“robapi-compatibility-revision”: “5”,
“title”: “RobotControl”,
“type”: “RobotWare”,
“description”: “Controller Software”,
“date”: “2025-02-26”,
“name”: “1300-502411”,
“rwversion”: “7.18.0+665”,
“sysid”: “{7F2ADD6B-FFB5-4DA3-84C7-12BAE8BA9D51}”,
“starttm”: “2026-03-10 T 11:00:00”,
“rwversionname”: “7.18.0”,
“rwdistributionversion”: “7.18.0”
}

Thank you!