Retrieve product version information
- Last UpdatedFeb 06, 2025
- 1 minute read
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.
Complete the following steps to retrieve the product version information of an AVEVA 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 curl:
Get product information for adapter hosted on port 5590
curl -X GET "http://localhost:5590/api/v1/Diagnostics/ProductInformation"
Example result:
{
"Application Name": "AVEVA Adapter for ",
"Adapter Framework Version": "1.3.0.351",
"Application Version":"1.2.0.37",
".Net Core Version":".NET Core 3.1.5",
"Operating System":"Linux 4.15.0-106-generic #107-Ubuntu SMP Thu Jun 4 11:27:52 UTC 2020"
}