文档
测试

获取项目中已经删除的任务(只有顶级任务)

GET
/project/projectTask/getDeletedTasksByProjectId/{projectId}

接口描述

获取项目中已经删除的任务(只有顶级任务)

请求头

参数名
类型
描述
必填
Authorization
String
token
必填

返回数据示例

```json { "code": 200, "msg": "操作成功", "data": [ { "taskId": "1749254866042060801", "projectId": "1749252877371539457", "parentId": "0", "children": null, "columnId": "1749252877564477441", "dialogId": null, "flowItemId": "1749252878206205953", "flowItemName": "待处理", "taskName": "test", "taskColor": "#2B2B2B", "taskStartAt": null, "taskEndAt": null, "taskCompleteAt": null, "archivedAt": null, "archivedBy": null, "archivedFollow": null, "iteration": "1", "visibility": null, "taskLevel": "1", "taskLevelName": "1", "taskLevelColor": "#2B2B2B", "taskDesc": null, "taskContent": null, "loop": null, "loopAt": null, "sort": null, "deletedUserId": null, "createUserId": "5", "createTime": "2024-01-22 10:17:14", "createOrgId": null, "createDeptId": null, "updateUserId": null, "updateTime": null, "remark": null } ], "traceId": "A60001" } ```