GET/business-support/human-resource/user/{userId}/extension-properties
구성원의 부가 정보 목록을 조회한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
businessSupport.humanResource
businessSupport.humanResource.read
| Parameter | Type | Description |
|---|---|---|
| userId | string | 구성원 ID required |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| userExtensionProperties | array (UserExtensionProperty) | 부가 정보 목록 |
| responseMetaData | object (responseMetaData) |
| Property | Type | Description |
|---|---|---|
| extensionPropertyId | string | 부가 정보 ID |
| extensionPropertyName | string | 부가 정보명 |
| i18nNames | array (i18nNames) | 부가 정보 다국어명 |
| propertyType | string | 부가 정보 종류 |
| propertyValue | string | 부가 정보 데이터 |
| Property | Type | Description |
|---|---|---|
| language | string | 다국어 언어 코드 Allowed values : ko_KR, ja_JP, en_US, zh_CN, zh_TW |
| name | string | 부가 정보명 |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | 다음 목록 조회 시 사용하는 커서값 |
Example 1
1{2 "userExtensionProperties": [3 {4 "extensionPropertyId": "0c330ee1-112b-40a7-b30e-e1112ba0a75a",5 "extensionPropertyName": "사내 동호회",6 "i18nNames": [7 {8 "language": "ko_KR",9 "name": "사내 동호회"10 }11 ],12 "propertyType": "DROPDOWN",13 "propertyValue": "1a4fe403-a9b9-4ce7-8fe4-03a9b96ce7d9"14 }15 ],16 "responseMetaData": {17 "nextCursor": "ssiakdkaslA!@asds"18 }19}