GET

애플리케이션 상태 조회

/rest/was/servers/{serverId}/nodes/{nodeName}/systems/{systemName}/applications/status

WAS 서버에 배포된 애플리케이션의 상태를 조회합니다.

GET /rest/was/servers/{serverId}/nodes/{nodeName}/systems/{systemName}/applications/status

WAS 서버에 배포된 애플리케이션의 상태를 조회합니다.

Request

Query Parameters

ParameterTypeRequiredDescription
serverIdstringYes서버 ID (Path)
nodeNamestringYes노드명 (Path)
systemNamestringYes시스템명 (Path)
keystringYesAPI 인증 키

Response

200 OK

{
  "applications": [
    {
      "contextPath": "/myapp",
      "status": "running",
      "sessions": 42
    }
  ]
}

401 Unauthorized

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

Example

curl "https://{{manager-host}}:{{port}}/rest/was/servers/{serverId}/nodes/{nodeName}/systems/{systemName}/applications/status?key=YOUR_API_KEY"