GET/groups/{groupId}/administrators
그룹 관리자 목록을 조회한다. 외부 그룹은 조회할 수 없다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증를 참고한다.
directory
directory.read
group
group.read
| Parameter | Type | Description |
|---|---|---|
| groupId | string | 그룹 ID 또는 외부 키. required |
| Parameter | Type | Description |
|---|---|---|
| domainId | integer | 도메인 ID example : 10000001 format : int32 |
| count | integer | 조회 개수 default : 100 minimum : 1 maximum : 100 example : 100 format : int32 |
| cursor | string | 커서값 example : JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA== |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
| Content-Type | string | application/json required example : application/json |
OK
| Property | Type | Description |
|---|---|---|
| administrators | array (GroupAdministrator) | 그룹 관리자 목록 |
| responseMetaData | object (responseMetaData) | 응답 메타데이터 |
| Property | Type | Description |
|---|---|---|
| userExternalKey | string | 구성원 외부 키 readOnly : true |
| userId | string | 구성원 ID required |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | 다음 목록 조회 시 사용하는 커서값 |
example
1{2 "administrators": [3 {4 "userExternalKey": "USER_EXT_01",5 "userId": "userf7da-f82c-4284-13e7-030f3b4c756x"6 }7 ],8 "responseMetaData": {9 "nextCursor": "JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA=="10 }11}Bad Request
Forbidden
Not Found