I have a report that looks for all stories in progress that do not have data in an assest we added. I need to filter the report future to limit those being reported on such that I know the stories are associated with any of nine “Programs”.
Is there a way from rest-1.v1/Data/Story
schema to see what program(s) the story may be part of?
I have searched the community and V1 docs and looked through the schema but have not found the proper way to do this.
Through the VersionOne web pages I see under “Reports” – “Program Quicklist” for “All Projects” and the filter set properly the nine programs I want to allow for.
If I hover over the Programs, shown under the “Title” column, I see a url like .../Program.mvc/Summary?oidToken=ScopeLabel%3A153263
This uses Program.mvc
and the token of ScopeLabel
with the Program ID number.
Anyway, I’m still trying to find the asset name to use as I do my query like:
.../rest-1.v1/Data/Story?sel=Name,Scope.ID,Scope.Name,Status,AssetState,Custom_AcceptanceCriteria&where=Status.Name='In+Progress';Scope.ParentMeAndUp='Scope:16484';AssetState='64'
to be able to determine if the result shows the story is part of one of the nine Programs that we want to specifically report.
Again, any thoughts on how I can get the data on which, if any, "Program" the story may belong to?