# 说明

返回符合查询条件的所有回收站中的工作项

# url

https://api.tapd.cn/mini_items/get_removed_mini_items

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

GET

# 请求数限制

默认返回 30 条。可通过传 limit 参数设置,最大取 200。也可以传 page 参数翻页

# 请求参数

字段名 必选 类型及范围 说明 特殊规则
workspace_id integer 空间ID
id integer 工作项ID
creator string 创建人
created date 创建时间
deleted date 删除时间
limit integer 设置返回数量限制,默认为30
page integer 返回当前数量限制下第N页的数据,默认为1(第一页)

# 调用示例及返回结果

# curl 使用 Basic Auth 鉴权调用示例

curl -u 'api_user:api_password' 'https://api.tapd.cn/mini_items/get_removed_mini_items?workspace_id=69993260'

# curl 使用 OAuth Access Token 鉴权调用示例

curl -H 'Authorization: Bearer ACCESS_TOKEN' 'https://api.tapd.cn/mini_items/get_removed_mini_items?workspace_id=69993260'

# 返回结果

{
    "status": 1,
    "data": [
        {
            "RemovedMiniItem": {
                "id": "1069993260855469013",
                "name": "子工作项1",
                "creator": "orangecyang",
                "created": "2023-03-09 10:13:11",
                "operation_user": "orangecyang",
                "deleted": "2023-07-03 16:31:30"
            }
        },
        {
            "RemovedMiniItem": {
                "id": "1069993260855461629",
                "name": "子工作项2",
                "creator": "orangecyang",
                "created": "2023-03-07 19:00:26",
                "operation_user": "orangecyang",
                "deleted": "2023-07-03 16:31:27"
            }
        }
    ],
    "info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

# 回收站字段说明

# 回收站重要字段说明

字段 说明
id 工作项ID
name 标题
creator 创建人
created 创建时间
operation_user 删除人
deleted 删除时间
上次更新: 2023-07-19 15:56:32