Forum Discussion
azure board what is the max page size limit for get project level iteration api
balasubramanim any idea as i have one parent level iteration ie projectName , that has number of iteration is there any limitation for per page response to fetch the iterations and use continuationToken for next page response
1. Limit on Iterations - If the number of iterations exceeds the API's response limit, Azure DevOps uses a continuation token to fetch the next set of data.
2. Pagination - Use the x-ms-continuationtoken from the response header in subsequent requests as ?continuationToken=<token> until no token is returned.
3. Filter by Name - The API does not support direct filtering by name. Fetch all iterations and filter them client-side.
4. $top and $skip - These parameters are not supported for this API.
Example: GET https://dev.azure.com/{organization}/{project}/_apis/wit/classificationnodes/Iterations?$depth=3&api-version=7.1-preview.1
Use the continuation token from the response header in subsequent requests for large data sets.