GET/users/{userId}/task-categories/{categoryId}
Gets a task category of a user.
OAuth 2.0 authentication.
For more information, see Authentication and Authorization.
task
task.read
| Parameter | Type | Description |
|---|---|---|
| userId | string | User ID required example : userf7da-f82c-4284-13e7-030f3b4c756x |
| categoryId | string | Task category ID required example : 6b943e91-9f5f-49fa-8fec-8921bc474a96 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| categoryId | string | Task category ID (if it is the default category: |
| categoryName | string | Task category name |
example
1{2 "categoryId": "6b943e91-9f5f-49fa-8fec-8921bc474a96",3 "categoryName": "Category 1234"4}