GET/tasks/{taskId}
タスクを取得する。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
task
task.read
| Parameter | Type | Description |
|---|---|---|
| taskId | string | タスク ID required example : 4f9373d8-0e34-45b3-8b04-5459fad4e855 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| task | object (task) | タスク |
| Property | Type | Description |
|---|---|---|
| assignees | array (Assignee) | 担当者リスト |
| assignorId | string | 依頼者 ID |
| assignorName | string | 依頼者名 |
| completionCondition | string | 完了条件
Allowed values : ANY_ONE, MUST_ALL |
| content | string | タスク内容 |
| createdTime | string | 登録日時 (YYYY-MM-DDThh:mm:ssTZD) readOnly : true |
| dueDate | string | 期限 (YYYY-MM-DD) nullable : true |
| modifiedTime | string | 更新日時 (YYYY-MM-DDThh:mm:ssTZD) readOnly : true |
| resourceLocation | integer | リソースロケーションコード readOnly : true |
| status | string | タスクの完了ステータス
Allowed values : DONE, TODO |
| taskId | string | タスク ID |
| title | string | 件名 |
| Property | Type | Description |
|---|---|---|
| assigneeId | string | 担当者 ID required |
| assigneeName | string | 担当者名 readOnly : true |
| status | string | タスクの完了ステータス
required Allowed values : DONE, TODO |
example
1{2 "assignees": [3 {4 "assigneeId": "userf7da-f82c-4284-13e7-030f3b4c754x",5 "assigneeName": "Susan Nielsen",6 "status": "TODO"7 },8 {9 "assigneeId": "userf7da-f82c-4284-13e7-030f3b4c756x",10 "assigneeName": "Assignee Name",11 "status": "TODO"12 }13 ],14 "assignorId": "userf7da-f82c-4284-13e7-030f3b4c756x",15 "assignorName": "Assigner Name",16 "completionCondition": "MUST_ALL",17 "content": "タスク内容",18 "createdTime": "2024-04-04T04:52:06.405Z",19 "dueDate": null,20 "modifiedTime": "2024-04-04T05:41:52.624Z",21 "resourceLocation": 14101,22 "status": "TODO",23 "taskId": "95e426f5-9c85-4d28-9c41-f22950398c9c",24 "title": "タスク"25}