Retrieve product version information
- Last UpdatedAug 25, 2025
- 1 minute read
The product version information includes the adapter framework version, application version, the version of the underlying 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:
1. Use any of the Configuration tools capable of making requests.
2. Run a command to the following endpoint:
Definition: The GET method is used to retrieve data on a server.
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 Structured Data Files",
"Product Version": "1.1.0.493",
"Adapter Framework Version":"",
"Runtime Version":"<current runtime version>",
"Operating System":"<current operating system>"
}
]