Epic Related Issue List
POST
/epic/page-issueRequest
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
pageNumber
integer <int32>
optional
Page Number
pageSize
integer <int32>
optional
Page Size
id
integer <int64>
required
Epic ID
projectId
integer <int64>
required
Project ID
Example
{
"pageNumber": 1,
"pageSize": 10,
"id": 1,
"projectId": 1
}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
summary
string
optional
Issue Summary
issueType
object
optional
Issue Type
name
string
optional
Issue Type Name
id
integer <int64>
optional
Issue Type ID
owner
object
optional
Issue Owner
name
string
optional
Owner Name
id
integer <int64>
optional
Owner ID
estimatePoint
number
optional
Issue Estimate Point
issueNumber
integer <int64>
optional
Issue Number
dueDate
string <date>
optional
Due Date
sprint
object
optional
Sprint
name
string
optional
Sprint Name
id
integer <int64>
optional
Sprint ID
follows
array [object {2}]
optional
Follows
name
string
optional
Follow Name
id
integer <int64>
optional
Follow ID
id
integer <int64>
optional
Issue ID
state
object
optional
State
name
string
optional
State Name
id
integer <int64>
optional
State ID
priority
object
optional
Priority
name
string
optional
Priority Name
id
integer <int64>
optional
Priority ID
startDate
string <date>
optional
Start Date
Example
{
"code": "0",
"data": {
"total": 1,
"list": [
{
"summary": "xxx",
"issueType": {
"name": "xxx",
"id": 1
},
"owner": {
"name": "xxx",
"id": 1
},
"estimatePoint": 1,
"issueNumber": 1,
"dueDate": 1646301600000,
"sprint": {
"name": "xxx",
"id": 1
},
"follows": [
{
"name": "xxx",
"id": 1
}
],
"id": 1,
"state": {
"name": "xxx",
"id": 1
},
"priority": {
"name": "xxx",
"id": 1
},
"startDate": 1646301600000
}
]
}
}
Last modified: 7 months ago