I am using the VersionOne Python SDK, and want to know when a Story moved into a certain project (Scope). I can retrieve the story but how do I get the history?
v1 = V1Meta()
for story in v1.Story.where(Number="S-01211"):
print story.Scope.Name # prints current value
# but how to retrieve historical values?