Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

AVEVA™ Adapter for Structured Data Files

Retrieve product version information

  • Last UpdatedJul 13, 2026
  • 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.

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 HTTP requests.

2. 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 Structured Data Files",

"Product Version": "1.1.0.493",

"Adapter Framework Version":"",

"Runtime Version":"<current runtime version>",

"Operating System":"<current operating system>"

}

]