# 说明
获取子项目信息(无分页)
# url
https://api.tapd.cn/workspaces/sub_workspaces
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
GET
# 请求数限制
一次返回所有符合条件的值
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 | 特殊规则 |
---|---|---|---|---|
workspace_id | 是 | integer | 父项目ID | 无 |
template_id | 否 | integer | 项目模板ID | 无 |
# 调用示例及返回结果
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' 'https://api.tapd.cn/workspaces/sub_workspaces?workspace_id=10104801'
# 返回结果
{
"status": 1,
"data": {
"Workspace": {
"id": "10104801",
"name": "TAPD 乌云",
"pretty_name": "tapd_security",
"category": "product",
"status": "normal",
"description": "",
"begin_date": null,
"end_date": null,
"external_on": "0",
"creator": "",
"created": "2015-03-27 16:02:02"
"template_id": "1000000000000000020"
}
},
"info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 项目相关字段说明
# 项目相关重要字段说明
字段 | 说明 |
---|---|
id | 项目 id |
name | 项目名称 |
pretty_name | 项目英文昵称 |
category | 项目类别 |
status | 项目状态: normal 正常,closed 关闭,suspend 挂起 |
description | 项目描述 |
begin_date | 开始时间 |
end_date | 结束时间 |
external_on | 是否开通外网 |
creator | 项目创建者的名字 |
template_id | 项目模板ID |