How to delete initiative , features and user stories from Rally?

803 Views Asked by At

Through Java Rally Rest API, how can I delete initiative , features and user stories? couldn't find the API in the rally.

1

There are 1 best solutions below

0
NotApplicable On

The 'delete' of an item is caused by hitting the end point for the item type ( e.g. https://rally1.rallydev.com/slm/webservice/v2.0/hierarchicalrequirement/ObjectID) with the operation set to DELETE (rather than GET or POST). You can test this out using curl if you wish. The file you want to look at is probably this one:

https://github.com/RallyTools/RallyRestToolkitForJava/blob/542afa16ea44c9c64cebb0299500dcbbb50b6d7d/src/main/java/com/rallydev/rest/RallyRestApi.java#L152