Get Finished Issue List
POST
https://app.leiga.com/openapi/api/issue/page-finished
Issue Module(issue)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.leiga.com/openapi/api/issue/page-finished' \
--header 'accessToken: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"pageNumber": 1,
"before": 1646301600000,
"sprintIds": [
1
],
"pageSize": 10,
"projectIds": [
1
],
"after": 1646301600000,
"assigneeIds": [
1
]
}'
Response Response Example
{
"code": "0",
"data": {
"total": 1,
"list": [
{
"priorityName": "xxx",
"issueTypeName": "xxx",
"issueNumber": "xxx",
"dueDate": 1646301600000,
"priorityId": 1,
"issueTypeId": 1,
"assigneeName": "xxx",
"statusName": "xxx",
"parentIssueTypeId": 1,
"sprintName": "xxx",
"id": 1,
"parentIssueTypeName": "xxx",
"summary": "xxx",
"remainingLabour": 1,
"finishTime": 1646301600000,
"estimateManHour": 1,
"assigneeId": 1,
"parentId": 1,
"sprintId": 1,
"statusId": 1,
"estimatePoint": 1,
"actualLabour": 1,
"projectName": "xxx",
"projectId": 1,
"startDate": 1646301600000,
"parentSummary": "xxx",
"parentIssueNumber": "xxx"
}
]
}
}
Request
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
Responses
Modified at 2024-06-12 06:46:49