GET/contacts/custom-properties/{customPropertyId}
도메인의 연락처 커스텀 속성을 조회한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
contact
contact.read
| Parameter | Type | Description |
|---|---|---|
| customPropertyId | string | customPropertyId 또는 propertyName required example : custompi-5ge3-f6d7-ht33-35gr6e465u01 |
| Parameter | Type | Description |
|---|---|---|
| domainId | integer | 도메인 ID example : 10000001 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| domainId | integer | 도메인 ID format : int32 |
| customPropertyId | string | 커스텀 속성 ID. 자동으로 부여되는 값 readOnly : true |
| propertyName | string | 커스텀 속성명. maxLength : 120 |
| displayName | string | 커스텀 속성 표시명. maxLength : 20 |
| i18nDisplayNames | array (I18nDisplayName) | 커스텀 속성 표시명 다국어 이름 목록 minItems : 0 |
| propertyType | string | 커스텀 속성 타입
Allowed values : STRING, LINK |
| displayOrder | integer | 정렬 순서. 중복이 허용되며 상대 비교를 통해 오름차순으로 정렬된다. 값을 입력하지 않으면(NULL) 마지막 위치로 지정된다. minimum : 1 format : int32 nullable : true |
| multiValued | boolean | 동일 커스텀 속성을 여러 건 등록할 수 있는지 여부. default : false |
| Property | Type | Description |
|---|---|---|
| language | string | 다국어 언어 코드 Allowed values : ko_KR, ja_JP, zh_CN, zh_TW, en_US |
| name | string | 다국어 이름 maxLength : 20 |
example
1{2 "domainId": 10000001,3 "customPropertyId": "custompi-5ge3-f6d7-ht33-35gr6e465u01",4 "propertyName": "ext_id",5 "displayName": "외부 ID",6 "i18nDisplayNames": [7 {8 "language": "ko_KR",9 "name": "외부 ID"10 },11 {12 "language": "en_US",13 "name": "external id"14 }15 ],16 "propertyType": "STRING",17 "displayOrder": 1,18 "multiValued": false19}Not Found