Question

Is there any way to determine what milestone a case is under?

I have looked through the API and the case XML structure and there does not seem to be any way to match up cases and milestones.

Was it helpful?

Solution

Found a work around.

Get all milestones in the project. Do a search - 'status:Active milestone:"Milestone 1" project:"72"'

Returns a list of all cases with that milestone.

OTHER TIPS

I don't know if you couldn't do this before, but if you look at the API, you can specify the columns you want when a query gets returned.

So if you want the milestone the case is under, just do this query:

cmd=search&q=<case number>&cols=sFixFor,ixFixFor

This will return the milestone name as well as the milestone id.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top