;
List the cardIds of cards in the increment that are currently in the increment status category specified by the
:category path parameter.
| Name | Description | Required | Schema |
|---|---|---|---|
| seriesId | ID of the planning series | Yes | string |
| incrementId | ID of the increment | Yes | string |
| category | Status category of cards to retrieve | Yes | string |
The category parameter accepts the following values:
notStarted - Cards that have not been started yetinProgress - Cards that are currently in progresscompleted - Cards that are completedcommitted - Cards that are committed to the incrementunplanned - Cards that are in the increment but were not originally planned| Code | Description | Schema |
|---|---|---|
| 200 | Successfully retrieved card IDs | ExpandStatusCategoryResponse |
| 400 | Bad request, invalid parameters | Error |
| 404 | Series or increment not found | Error |
| Property | Type | Description |
|---|---|---|
| cardIds | array[string] | List of card IDs in the specified category |
| blockedCardIds | array[string] | Subset of cardIds that are currently blocked |
curl -X GET \ https://myaccount.leankit.com/io/series/1234/increment/5678/status/inProgress \ -H 'Authorization: Basic base64encodedauthhere'
200 OK
{
"cardIds": [
"2222",
"3333"
],
"blockedCardIds": [
"3333"
]
}