GET

권한 상세 조회

/rest/admin/auth/{authId}

특정 권한의 상세 정보를 조회합니다.

GET /rest/admin/auth/{authId}

특정 권한의 상세 정보를 조회합니다.

Request

Query Parameters

ParameterTypeRequiredDescription
authIdstringYes권한 ID (Path)
keystringYesAPI 인증 키

Response

200 OK

{
  "authId": "ADMIN",
  "authNm": "Administrator",
  "actionTypes": ["READ", "WRITE", "EXECUTE"],
  "description": "Full system administrator"
}

401 Unauthorized

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

Example

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