Counted on server side via WSAPI?

Is it possible to count the number of objects on the Rally server side using WSAPI?

For example, I have an application that wants to count the number of unresolved defects for each project in our work area. I don’t need to know anything about these defects themselves, so I just want to count and don’t need any other data that can be thrown back.

How to do it?

+3
source share
1 answer

You might want to check out Alan's helpful answer to this question:

Rally: counting scheduled stories for release?

An analogue for defects will be:

     https://rally1.rallydev.com/slm/webservice/1.31/defect.js?query=(State < "Fixed")

, TotalResultCount, , , .

+1

All Articles