GET

라이선스 목록 조회

/rest/licenses

모든 노드의 라이선스 정보를 조회합니다.

GET /rest/licenses

모든 노드의 라이선스 정보를 조회합니다.

Request

Query Parameters

ParameterTypeRequiredDescription
keystringYesAPI 인증 키

Response

200 OK

{
  "licenses": [
    {
      "nodeName": "node-01",
      "licenseType": "Enterprise",
      "expireDate": "2027-12-31",
      "maxCpu": 16
    }
  ]
}

401 Unauthorized

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

Example

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