# 说明
获取迭代自定义卡片内容。
# url
https://api.tapd.cn/iterations/get_custom_dash_board_content
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
GET
# 请求数限制
- 只支持查询一个迭代的
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 | 特殊规则 |
---|---|---|---|---|
workspace_id | 是 | integer | 项目ID | |
iteration_id | 是 | integer | 迭代ID |
# 调用示例及返回结果
# 获取迭代 1010104801000723579 的自定义卡片内容
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' 'https://api.tapd.cn/iterations/get_custom_dash_board_content?workspace_id=10104801&iteration_id=1010104801000723579'
# 返回结果
{
"status": 1,
"data": [
{
"id": "1010104801000003949",
"template": "Custom",
"title": "自定义aaa",
"component_data": "[]",
"width": "6",
"height": "3",
"card_type": "RichContent",
"data": {
"content": "<p>自定义卡片内容。支持 <strong>HTML</strong>。</p>",
"description_type": "1",
"value": "<p>自定义卡片内容。支持 <strong>HTML</strong>。</p>"
}
}
],
"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 |
template | 卡片类型。取 Custom |
card_type | 卡片内容类型。取 RichContent |
data.content | 卡片HTML内容 |