POST/users/{userId}/contact-tags
특정 구성원의 사용자 연락처 태그를 생성한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
contact
| Parameter | Type | Description |
|---|---|---|
| userId | string | 구성원 ID required example : userf7da-f82c-4284-13e7-030f3b4c756x |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
| Content-Type | string | application/json required example : application/json |
| Property | Type | Description |
|---|---|---|
| contactTagName | string | 태그 이름 required maxLength : 30 |
example
1{2 "contactTagName": "user tag"3}OK
| Property | Type | Description |
|---|---|---|
| contactTagId | string | 연락처 태그 ID readOnly : true |
| contactTagName | string | 태그 이름 required maxLength : 30 |
| type | string | 태그 타입
Allowed values : COMPANY, USER readOnly : true |
| userId | string | 사용자 태그 생성자
readOnly : true |
example
1{2 "contactTagId": "ctaguser-94b6-4642-6903-03aa7977da69",3 "contactTagName": "user tag",4 "type": "USER"5}Bad Request
Forbidden