Get a list of increments for a planning series
GET /io/series/:seriesId/increment
Get a list of increments and child increments for a planning series.
Query Params
Param |
Type |
Usage |
Default |
offset |
integer |
Set the "start row" number of the first card to be returned. |
0 |
limit |
integer |
Set the number of cards to be returned. |
200 |
sortBy |
enumeration |
Set the ordering of the results. |
dateAsc |
Valid sortBy
options:
Example Requests
3 | -H 'Authorization: Basic base64encodedauthhere' |
7 | -H 'Authorization: Basic base64encodedauthhere' |
Example successful response
15 | "planningSeriesId" : "12345" , |
16 | "startDate" : "2021-10-01" , |
17 | "endDate" : "2021-11-15" , |
18 | "parentPlanningIncrementId" : null |
23 | "planningSeriesId" : "12345" , |
24 | "startDate" : "2022-02-01" , |
25 | "endDate" : "2022-02-14" , |
26 | "parentPlanningIncrementId" : "1014169191" |
31 | "planningSeriesId" : "12345" , |
32 | "startDate" : "2022-02-15" , |
33 | "endDate" : "2022-02-28" , |
34 | "parentPlanningIncrementId" : "1014169191" |
41 | "planningSeriesId" : "12345" , |
42 | "startDate" : "2022-02-01" , |
43 | "endDate" : "2022-02-28" , |
44 | "parentPlanningIncrementId" : null, |