Rally: Counts the number of stories scheduled for release?

I am trying to extract from the History Counting API for the latest scheduled version. There's a report that is doing this currently, but I don't see any public method in the API. Does anyone know if this can be obtained?

+2
source share
3 answers

You should be able to query for each schedule state and capture the TotalResultCount from the response body. For instance:

https://rally1.rallydev.com/slm/webservice/1.31/hierarchicalrequirement.js?query=(ScheduleState = "Defined")

https://rally1.rallydev.com/slm/webservice/1.31/hierarchicalrequirement.js?query=(ScheduleState = "In-Progress")

etc. Since there are only four β€œbuilt-in” schedule states, plus optional before Defined and optional after Accepted, these are no more than 6 queries.

+3
source

Alan , :

query = ((ScheduleState = Defined) (Release.Name = "My Release" ))

SDK REST (ruby,.net, python)? :

http://developer.rallydev.com

+3

All Articles