PATCH/business-support/human-resource/user/{userId}/extension-properties/{extensionPropertyId}
구성원의 부가 정보를 부분 수정한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
businessSupport.humanResource
| Parameter | Type | Description |
|---|---|---|
| extensionPropertyId | string | extensionPropertyId required |
| userId | string | 구성원 ID required |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
| Property | Type | Description |
|---|---|---|
| propertyValue | string | 부가 정보 데이터 |
Example 1
1{2 "propertyValue": "ac40a251-6804-4803-80a2-51680448038f"3}OK
| 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 | 부가 정보명 |
Example 1
1{2 "extensionPropertyId": "0c330ee1-112b-40a7-b30e-e1112ba0a75a",3 "extensionPropertyName": "사내 동호회",4 "i18nNames": [5 {6 "language": "ko_KR",7 "name": "사내 동호회"8 }9 ],10 "propertyType": "DROPDOWN",11 "propertyValue": "ac40a251-6804-4803-80a2-51680448038f"12}