Forum Discussion
surendra-p
Dec 02, 2024Copper Contributor
azure board what is the max page size limit for get project level iteration api
i am using classificationnodes iteration api what if the number of project level iterations exceeds this limit how can we retrieve the next set of iterations using pagination? can we use filter as s...
surendra-p
Dec 16, 2024Copper Contributor
balasubramanim i can fetch the project level iterations each iteration has id,
identifier,name .
can we get the project level iteration details by id i have used bellow api:
GET _apis/wit/classificationnodes/iterations/{id}?api-version=7.1-preview.1
but its not working
balasubramanim
Dec 17, 2024Iron Contributor
The Azure DevOps API does not support fetching iteration details by ID.
Try this step
GET https://dev.azure.com/{organization}/{project}/_apis/wit/classificationnodes/iterations/{path}?api-version=7.1-preview.1
Fetch all iterations using $depth
GET _apis/wit/classificationnodes/iterations?$depth=2&api-version=7.1-preview.1
Filter the result by ID on the client side.
Direct id lookup is not supported.