사용자 목록 조회
/rest/admin/users등록된 모든 사용자 목록을 조회합니다.
GET /rest/admin/users
등록된 모든 사용자 목록을 조회합니다.
Request
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
key | string | Yes | API 인증 키 |
Response
200 OK
{
"users": [
{
"usrId": "admin",
"usrNm": "Administrator",
"roles": ["ADMIN"]
}
]
}
401 Unauthorized
{
"error": "Unauthorized",
"code": "UNAUTHORIZED"
}
Example
curl "https://{{manager-host}}:{{port}}/rest/admin/users?key=YOUR_API_KEY"