私は初心者で、Rally REST Toolkit for .NET を使用してリリースを階層要件に割り当てる際に助けが必要です。
多くのフィールドを更新できますが、リリース フィールドの変更に問題があります。
私は次のことを試しました:
...
restApi = new RallyRestApi("xxx@yy.com", "password", "https://rally1.rallydev.com", "v2.0");
DynamicJsonObject toUpdate = new DynamicJsonObject();
toUpdate["Release._ref"] = "https://rally1.rallydev.com/slm/webservice/v2.0/release/23453434";
OperationResult updateResult = restApi.Update('hierarchicalrequirement', 1234323, toUpdate);
Also, tried
toUpdate["Release.Name"] = "ABCDRelease";
これに関するヘルプは大歓迎です。
よろしくカント