GET/users/{userId}/task-categories
할 일 개인 카테고리 목록을 조회한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증를 참고한다.
task
task.read
| Parameter | Type | Description |
|---|---|---|
| userId | string | 사용자 ID required example : userf7da-f82c-4284-13e7-030f3b4c756x |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| taskCategories | array (object) |
| Property | Type | Description |
|---|---|---|
| categoryId | string | 할 일 개인 카테고리 ID(기본 카테고리인 경우: |
| categoryName | string | 할 일 개인 카테고리 이름 |
example
1{2 "taskCategories": [3 {4 "categoryId": "6b943e91-9f5f-49fa-8fec-8921bc474a96",5 "categoryName": "카테고리 1234"6 }7 ]8}