PATCH/users/{userId}/task-categories/{categoryId}
할 일 개인 카테고리를 부분 수정한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증를 참고한다.
task
| Parameter | Type | Description |
|---|---|---|
| userId | string | 사용자 ID required example : userf7da-f82c-4284-13e7-030f3b4c756x |
| categoryId | string | 할 일 개인 카테고리 ID required example : 6b943e91-9f5f-49fa-8fec-8921bc474a96 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
| Property | Type | Description |
|---|---|---|
| categoryName | string | 변경할 할 일 개인 카테고리 이름 |
example
1{2 "categoryName": "카테고리 5678"3}OK
| Property | Type | Description |
|---|---|---|
| categoryId | string | 할 일 개인 카테고리 ID(기본 카테고리인 경우: |
| categoryName | string | 할 일 개인 카테고리 이름 |
example
1{2 "categoryId": "6b943e91-9f5f-49fa-8fec-8921bc474a96",3 "categoryName": "카테고리 1234"4}