GET /io/series/:seriesId/increment/:incrementId/status
Enumerates the total number of cards and the number of blocked cards in the increment by status category.
Path Parameters
Name |
Description |
Required |
Schema |
Format |
seriesId |
ID of the planning series |
Yes |
string |
uuid |
incrementId |
ID of the increment |
Yes |
string |
uuid |
Responses
Code |
Description |
Schema |
200 |
Successfully retrieved increment status |
IncrementStatusResponse |
400 |
Bad request, invalid parameters |
Error |
404 |
Series or increment not found |
Error |
StatusCategoryCount
Property |
Type |
Description |
Required |
total |
integer |
Total number of cards in this category |
Yes |
blocked |
integer |
Number of blocked cards in this category |
Yes |
Example Request
curl -X GET \
https://myaccount.leankit.com/io/series/1234/increment/5678/status \
-H 'Authorization: Basic base64encodedauthhere'
Example Successful Response
{
"notStarted": {
"total": 2,
"blocked": 0
},
"inProgress": {
"total": 2,
"blocked": 1
},
"completed": {
"total": 2,
"blocked": 0
},
"committed": {
"total": 5,
"blocked": 1
},
"unplanned": {
"total": 1,
"blocked": 0
}
}