# 说明
返回符合查询条件的所有项目自定义字段(无分页)
# url
https://api.tapd.cn/workspaces/workspace_custom_field_settings
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
GET
# 请求数限制
一次返回所有符合条件的值,只能传项目参数,一次只能查一个项目
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 | 特殊规则 |
---|---|---|---|---|
workspace_id | 是 | integer | 公司ID | 无 |
# 调用示例及返回结果
# 获取项目自定义字段
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' 'https://api.tapd.cn/workspaces/workspace_custom_field_settings?workspace_id=20001871'
# 返回结果
{
"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"
}
},
"info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 项目相关字段说明
# 项目相关重要字段说明
字段 | 说明 |
---|---|
id | 自定义字段ID |
workspace_id | 公司ID |
entry_type | 归属类型 |
custom_field | 自定义字段标识 |
type | 自定义字段类型 |
name | 自定义字段名称 |
options | 候选值 |
extra_config | 额外配置 |
enabled | 是否启用 |