# 说明
解锁迭代
# url
https://api.tapd.cn/iterations/unlock_iteration
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
POST
# 请求数限制
一次插入一条数据
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
iteration_id | 是 | integer | 迭代ID |
workspace_id | 是 | integer | 项目ID |
# 调用示例及返回结果
# 在项目下解锁迭代
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' -d 'workspace_id=10104801&iteration_id=1010104801000723579' 'https://api.tapd.cn/iterations/unlock_iteration'
# 返回结果
{
"status": 1,
"data": "unlock 1010104801000723579 successfully",
"info": "success"
}
1
2
3
4
5
2
3
4
5