Summary:
List information about the installed version of Entuity.
URL:
http(s)://{server hostname}/api/info
Methods summary
- GET Method - returns information about the installed version of Entuity.
GET Method detail
Returns information about the installed version of Entuity.
Response:
Response is an object with the following attributes:
Name | Description |
---|---|
hostAddress | host name for accessing the product. |
id |
server ID. |
product |
product edition. |
sslAccess |
specifies to use HTTP (false) or HTTPS (true) |
version | product version. |
versionDisplay | user-friendly version string of the product. |
webPort | port number for accessing the product over HTTP(S). |
Examples:
INPUT
curl -u admin:admin https://localhost/api/info?media=json
OUTPUT
{
"id": "34564e92-3b4f-43ba-94a8-04309c0e48fe",
"version": "21.0.0.p3",
"versionDisplay": "Entuity 21.0",
"product": "EYE",
"hostAddress": "[localhost]",
"webPort": 80,
"sslAccess": false
}
INPUT
curl -u admin:admin https://localhost/api/info?media=xml
OUTPUT
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<serverInfo sslAccess="false" webPort="80" hostAddress="[localhost]" product="EYE" versionDisplay="Entuity 21.0" version="21.0.0.p3" id="34564e92-3b4f-43ba-94a8-04309c0e48fe"/>
Comments
0 comments
Please sign in to leave a comment.