Get Project Sprint List
POST
/sprint/list-with-countRequest
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
projectId
integer <int64>
required
Project ID
Example
{
"projectId": 1
}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
goal
string
optional
Sprint Goal
issueTypeCountMap
object
optional
Count By Issue Type
endDate
string <date>
optional
End Date
started
string <byte>
optional
Is Started
<= 4 characters
estimatePointTotal
integer <int64>
optional
Total Estimate Point
completeDate
string <date>
optional
Complete Date
assigneeName
string
optional
Sprint Owner Name
name
string
optional
Sprint Name
closed
string <byte>
optional
Is Closed
<= 4 characters
id
integer <int64>
optional
Sprint ID
assignee
integer <int64>
optional
Sprint Owner ID
startDate
string <date>
optional
Start Date
status
integer <int32>
optional
Sprint Status (1:In Progress 2:Not Started 4:Done)
Example
{
"code": "0",
"data": [
{
"goal": "1",
"issueTypeCountMap": {
"a": 0,
"b": 0,
"c": 0,
"d": 0,
"e": 0,
"f": 0
},
"assigneeName": "xxx",
"endDate": 1622217599999,
"name": "yyy",
"assignee": 1,
"id": 1,
"projectId": "1",
"startDate": 1622044800000,
"status": 1
},
{
"goal": "1",
"issueTypeCountMap": {
"a": 0,
"b": 0,
"c": 0,
"d": 0,
"e": 0,
"f": 0
},
"assigneeName": "zzz",
"endDate": 1622217599999,
"name": "aaa",
"assignee": 1,
"id": 1,
"startDate": 1622044800000,
"status": 1
}
]
}
Last modified: 7 months ago