3

I’m having a hard time finding any information on how to retrieve snapshot data using the Rally REST API. I noticed there is a Lookback toolkit for Java, but I am coding in C#.

In particular, I would like to retrieve Schedule State changes over time for Stories (aka Requirements).

Any related example would also be very helpful. Thank you, -Phil

Trever Shick
  • 1,734
  • 16
  • 17
Phil
  • 33
  • 2

1 Answers1

1

There is currently no built-in support for Lookback API in .NET REST tookit and in Java REST toolkit. See also this post As an imperfect workaround see this post that mentions parsing Revisions. You may query on stories and fetch RevisionHistory,Revisions and Description, and iterate over results parsing Description of individual revisions for "SCHEDULE STATE changed" string.

Community
  • 1
  • 1
nickm
  • 5,936
  • 1
  • 13
  • 14
  • Thanks for the quick response. There is a Toolkit for Java which provides an interface for interacting with the Rally Lookback API. Site: https://github.com/RallyTools/Rally-Lookback-Toolkit – Phil Sep 10 '13 at 16:40
  • Correct, but it is not built in the Rally java toolkit or officially supported. – nickm Sep 10 '13 at 16:49
  • I was saving the Revisions approach for Plan "B" – Phil Sep 10 '13 at 18:53