Retrieve product version information
- Last UpdatedFeb 04, 2025
- 1 minute read
- PI System
- Adapter for BACnet 1.2
- 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 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 edgecmd:
edgecmd -port <portnumber> get Version
Example result:
{
"Product Name": "AVEVA Adapter for <Adapter Name>",
"Product Version": "<current version number>",
"Adapter Framework Version":"<current adapter framework version number>",
"Runtime Version":"<current runtime version>",
"Operating System":"<current operating system>"
}