Rally - How to get risk info for an epic using the API
search cancel

Rally - How to get risk info for an epic using the API

book

Article ID: 209421

calendar_today

Updated On:

Products

Rally SaaS

Issue/Introduction

Is there a way to pull all risk info on an epic via API ? We would like to pull data on all risks for an epic and create alerts for the receiving group.

Environment

Release : SAAS

Component : AGILE CENTRAL

Resolution

Risks can be associated with all Portfolio Item types and User Stories.  In this scenario, the Epics are directly above Feature, so I will use this for the following examples.

It would be possible to use the API to search for all risks associated with a specific Epic with the following API call.  In the following URL, I searched for a specific initiative (I9). It will be necessary to change the Workspace ObjectID to your specific Workspace ObjectID - and of course change the Initiave ID to your own as well:

https://rally1.rallydev.com/slm/webservice/v2.0/portfolioitem/initiatave?workspace=https://us1.rallydev.com/slm/webservice/v2.0/workspace/<WORKSPACE_OID>&query=(FormattedID = "I9")&fetch=true&start=1&pagesize=20

However, the above does not search for all risks associated with the Features or User Stories associated with that Iteration.  This would have to be done in separate API calls - one for Feature and one for User Stories. 

To make the queries run faster for Features and User Stories, it would be possible to use (Risks.ObjectID != null) in the query to only pull the User Stories or Features that have Risks associated with them.