获取版本关联issue列表
POST
/version/page-associate请求参数
Header 参数
Content-Type
string
必需
示例值:
application/json
accessToken
string
必需
示例值:
{{accessToken}}
Body 参数application/json
pageNumber
integer <int32>
页码,默认第一页
releaseId
integer <int64>
版本id
stateCategory
integer <int32>
状态类别
pageSize
integer <int32>
可选
每页条数,默认每页10条
projectId
integer <int64>
项目id
assigneeId
integer <int64>
执行人id
示例
{
"pageNumber": 1,
"releaseId": 1,
"stateCategory": 1,
"pageSize": 10,
"projectId": 1,
"assigneeId": 1
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSON*/*
OK
数据结构
summary
string
概要
priorityName
string
优先级名称
issueTypeName
string
事项类型名称
dueDate
string <date>
截止时间
updateTime
string <date>
更新时间
assigneeId
integer <int64>
执行人id
priorityId
integer <int64>
优先级编号
issueTypeId
integer <int64>
事项类型id
statusId
integer <int64>
状态id
assigneeName
string
执行人
createTime
string <date>
创建时间
statusName
string
状态名称
id
integer <int64>
事项id
projectName
string
项目名称
projectId
integer <int64>
项目id
示例
{
"code": "0",
"data": {
"total": 1,
"list": [
{
"summary": "xxx",
"priorityName": "xxx",
"issueTypeName": "xxx",
"dueDate": 1646301600000,
"updateTime": 1646301600000,
"assigneeId": 1,
"priorityId": 1,
"issueTypeId": 1,
"statusId": 1,
"assigneeName": "xxx",
"createTime": 1646301600000,
"statusName": "xxx",
"id": 1,
"projectName": "xxx",
"projectId": 1
}
]
}
}
最后修改时间: 4 个月前