권한 상세 조회
/rest/admin/auth/{authId}특정 권한의 상세 정보를 조회합니다.
GET /rest/admin/auth/{authId}
특정 권한의 상세 정보를 조회합니다.
Request
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
authId | string | Yes | 권한 ID (Path) |
key | string | Yes | API 인증 키 |
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"