Rally Software

 View Only
  • 1.  List Changesets for a User Story using the .NET REST API toolkit

    Posted Oct 05, 2016 10:22 AM
    My company recently migrated user stories from one workspace to another workspace.  I'm building a simple application to do some basic queries so that I can do some verifiication.  I'm trying to use the .NET REST API toolkit to list the changesets for a specified user story.

    I can use a query to return the user story I need but I cannot find a way to the loop thru the changesets for that user story.

    I tried going the other way as well and I can query all changesets but do not know how to filter by a specific user story.

    Are there any examples out there of how to list the changesets for a specific user story using the API toolkit?
     


  • 2.  Re: List Changesets for a User Story using the .NET REST API toolkit
    Best Answer

    Posted Oct 05, 2016 12:00 PM
    I was able to finally figure this out.

    Request myrequest = new Request(storyObject["Changesets"]);
    QueryResult myresult = restApi.Query(myrequest);