更新迭代
POST
https://open.teambition.com/api/sprint/update
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://open.teambition.com/api/sprint/update' \
--header 'Authorization: Bearer <appAccessToken>' \
--header 'X-Tenant-Id: 50c32af35a87e6b2...' \
--header 'X-Tenant-Type: organization' \
--header 'Content-Type: application/json' \
--data-raw '{
"operatorId": "5e142164aef01b07...",
"sprintId": "5e142164aef01b07...",
"name": "迭代名字",
"description": "迭代描述",
"status": "迭代状态",
"executorId": "5e142164aef01b07...",
"startDate": "2019-12-01T10:30:00Z",
"dueDate": "2019-12-02T10:30:00Z"
}'
响应示例响应示例
{
"code": 200,
"errorMessage": "",
"result": {
"creatorId": "5e141eaf7fd0daf8...",
"sprintId": "5e141eaf7fd0daf8...",
"projectId": "5e141eaf7fd0daf8...",
"executorId": "5e141eaf7fd0daf8...",
"created": "2019-12-01T10:30:00Z",
"dueDate": "2019-12-02T10:30:00Z",
"name": "迭代名",
"description": "迭代描述",
"startDate": "2019-12-01T10:30:00Z",
"status": "future",
"updated": "2019-12-01T10:30:00Z"
}
}
请求参数
Header 参数
Content-Type
string
可选
示例值:
application/json
Authorization
string
可选
默认值:
{{Authorization}}
X-Tenant-Id
string
企业 ID
默认值:
{{X-Tenant-Id}}
X-Tenant-Type
string
可选
默认值:
organization
Body 参数application/json
返回响应
修改于 2021-12-28 10:46:51