Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How to fetch all builds of a BAMBOO Plan from REST API?

Roopendra Vishwakarma October 18, 2016

I am trying to fetch all builds of a plan from Bamboo rest API. but its giving me only 25 builds.

API URLhttps://localhost:8085/rest/api/latest/result/PROJECTKEY-PLANKEY.json

As per the official documentation

The number of resources in returned lists is limited to 25, unless you specify max-result.

Hence for workaround, I thought I can fetch build size in first api call and pass size in second api call as max-results parameter. So that it will give me all builds for a plan. But first API call ( with max-results=1) giving me size 1 whereas same is working for fetching size of the projects.

API call to get the build size: (Not Working)

https://localhost:8085/rest/api/latest/result/PROJECTKEY-PLANKEY.json?max-results=1

output: size=1, max-result=1 (Whereas plan has 33 builds)

expected output: size=33, max-result=1

https://localhost:8085/rest/api/latest/result/PROJECTKEY-PLANKEY.json?max-results=PASS-SIZE-HERE

Working API to get the Project Size:

https://localhost:8085/rest/api/latest/project.json?max-results=1

output: size=30, max-result=1

My question here, Can we fetch all BUILDS of a PLAN? as by default its only fetching 25 builds.

5 answers

1 vote
Steffen Opel _Utoolity_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
June 22, 2017

Just stumbled over this and identified the following workaround:

Workaround

Using an arbitrary large number (say 1,000,000) that is greater than the actual result set seems to return the actual '$results.size':

  • Get the size of the result set via 'max-results=1000000'
    https://localhost:8085/rest/api/latest/result/PROJECTKEY-PLANKEY.json?max-results=1000000

This returns the actual $results.size=x for me, allowing a proper request for the entire result set in turn.

 

0 votes
Tara h.sudharshan December 2, 2020

Waiting for an answer. Can we increase the number from 25? 

0 votes
surajso June 21, 2017

can we get any solution on finding all builds data through rest api of bamboo as it only gives latest 25 build data.

or this is issue is as it is.

kindly reply ASAP.

 

0 votes
Roopendra Vishwakarma October 20, 2016

Thanks @Alexey Chystoprudov !

0 votes
Alexey Chystoprudov
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
October 20, 2016

Looks like a bug, created in issue https://jira.atlassian.com/browse/BAM-17961

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events