Retrieve product version information
- Last UpdatedNov 10, 2025
- 1 minute read
- PI System
- Adapter for MQTT 1.4
- Adapters
The product version information includes the adapter framework version, application version, the version of the underlying .NET Core framework, and the operating system that the adapter is running on.
Note: To verify adapter and framework version numbers, refer to the AVEVA Adapter for MQTT release notes. For a list of available operating systems, refer to the system requirements.
To retrieve the product version information of an adapter:
-
Use any of the Configuration tools capable of making HTTP requests.
-
Run a GET command to the following endpoint:
http://localhost:5590/api/v1/Diagnostics/ProductInformation
Note: 5590 is the default port number. If you selected a different port number, replace it with that value.
Example using Postman:
GET "http://localhost:5590/api/v1/Diagnostics/ProductInformation"
Example using the EdgeCmd utility:
edgecmd -port <portnumber> get Version
Example result:
[
{
"Product Name": "AVEVA Adapter for MQTT",
"Product Version": "1.4.0.455",
"Adapter Framework Version":"1.8.3.128",
"Runtime Version":"<current runtime version>",
"Operating System":"<current operating system>"
}
]