GET

모든 노드 조회

/rest/nodes

등록된 모든 노드 목록을 조회합니다.

GET /rest/nodes

등록된 모든 노드 목록을 조회합니다.

Request

Query Parameters

ParameterTypeRequiredDescription
keystringYesAPI 인증 키

Response

200 OK

{
  "nodes": [
    {
      "nodeName": "node-01",
      "systemName": "Production",
      "hostIp": "10.0.1.10",
      "agentPort": 7700,
      "status": "running"
    }
  ]
}

401 Unauthorized

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

Example

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