# 说明

获取项目报告数据

# url

https://api.tapd.cn/workspace_reports

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

GET

# 请求数限制

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

# 请求参数

字段名 必选 类型及范围 说明 特殊规则
workspace_id integer 项目ID
id integer ID
title integer 标题
author integer 创建人
created integer 创建时间
limit integer 设置返回数量限制,默认为30
page integer 返回当前数量限制下第N页的数据,默认为1(第一页)
fields string 设置获取的字段,多个字段间以','逗号隔开

# 调用示例及返回结果

# 获取项目报告数据

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

curl -u 'api_user:api_password' 'https://api.tapd.cn/workspace_reports?workspace_id=10104801'

# 返回结果

{
    "status": 1,
    "data": [
        {
            "WorkspaceReport": {
                "id": "1010104801000399873",
                "title": "TAPD 乌云转测试报告",
                "workspace_id": "10104801",
                "report_type": "totest",
                "receiver": "v_zujunlin;",
                "cc": "anyechen;",
                "receiver_organization_ids": null,
                "cc_organization_ids": null,
                "sender": "anyechen",
                "send_time": "2018-09-25 16:32:11",
                "author": "anyechen",
                "created": "2018-09-25 16:32:10",
                "status": "sent",
                "modified": "2018-09-25 16:32:11",
                "last_modify": "anyechen"
            }
        }
    ],
    "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

# 项目相关字段说明

# 项目报告相关重要字段说明

字段 说明
id 报告id
title 标题
workspace_id 项目id
report_type 报告类型
receiver 收件人
cc 抄送人
receiver_organization_ids 做为接收人的组织架构
cc_organization_ids 做为抄送人的组织架构
sender 发件人
send_time 发件时间
created 创建时间
author 创建人
status 状态
modified 最后修改时间
last_modify 最后修改人

# 状态(status)取值字段说明

取值 字面值
sent 已发送
draft 草稿
abandon 已删除

# 报告类型(report_type)取值字段说明

取值 字面值
normal 项目进度报告
totest 项目转测试
test 测试报告
上次更新: 2023-05-06 16:55:56