GET

모든 시스템 조회

/rest/systems

사용자가 접근 가능한 모든 시스템 목록을 조회합니다.

GET /rest/systems

사용자가 접근 가능한 모든 시스템 목록을 조회합니다.

Request

Query Parameters

ParameterTypeRequiredDescription
keystringYesAPI 인증 키

Response

200 OK

{
  "systems": [
    {
      "systemId": "sys001",
      "systemName": "Production",
      "nodeCount": 5,
      "webCount": 2,
      "appCount": 10,
      "sessionCount": 2
    }
  ]
}

Response Fields

FieldTypeDescription
systemIdstring시스템 고유 ID
systemNamestring시스템명
nodeCountinteger소속 노드 수
webCountinteger웹 서버 수
appCountintegerWAS 서버 수
sessionCountinteger세션 서버 수

401 Unauthorized

{
  "error": "Unauthorized",
  "code": "UNAUTHORIZED"
}

Example

curl "https://{{manager-host}}:{{port}}/rest/systems?key=YOUR_API_KEY"