Get Project Sprint List
POST
https://app.leiga.com/openapi/api/sprint/list-with-count
Sprint Module(sprint)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.leiga.com/openapi/api/sprint/list-with-count' \
--header 'accessToken: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"projectId": 1
}'
Response Response 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
}
]
}
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