Find the System Information

Find all of the systems that are installed with the Agent Installer. This API provides all systemIDs and hostnames that are present under one account. This API also provides the previous versions of the monitoring agents, which is used to rollback the Agent Installer.

Format:

GET /maintenance/systemInfos

Request Example:

curl --location --request GET 'https://demo.saas.appdynamics.com/zero/v1beta/maintenance/systemInfos' --header 'Authorization: Bearer {AuthToken}'

Response Example:

{
"total": 2,
"items": [
{
"systemId": "1cbcfd90-95ab-4366-b614-1bfab44a9305",
"hostname": "jboss_host",
"applicationName": "HelloWorld",
"rootInstall": true,
"curVersions": [
{
"type": "JAVA",
"version": "20.3.0.1183"
}
],
"prevVersions": [
{
"type": "JAVA",
"version": "20.3.0.1183"
}
]
},
{
"systemId": "c44f978d-8db6-452f-9387-9b852d8df03a",
"hostname": "windows_host",
"applicationName": "HelloWorld",
"rootInstall": true,
"versions": [
{
"type": "MACHINE_WINDOWS",
"version": "22.3.0.3296"
}
],
"prevVersions": [
{
"type": "MACHINE_WINDOWS",
"version": "22.1.0.3252"
}
]
}
]
}