I'm getting object references(Feature) for some of the Rally records I'm trying to yield out to a csv. Does anyone know the Rally api syntax to get to the record of the PortfolioItem/Feature data?
Thanks in advance.
Here is my Python code snippet.
def getUserStories():
response = rally.get("HierarchicalRequirement",fetch=True, pagesize=200, limit=50)
for item in response:
FIELDS = (item.FormattedID, item.Feature, item.Description,
item.Name, item.Notes, item.Parent)
yield FIELDS
This is the output from a print FIELDS: ([], u'US136', None,
The first column is Tags so if there is a record there, I get an object. The fourth column returns "". I need to get the data from this object. What is the best way to extract the data?
Thanks