我是一个新手,在使用 Rally REST Toolkit for .NET 将发布分配给分层需求方面需要帮助。
我能够更新很多字段,但在更改 Release 字段时遇到问题。
我尝试了以下方法:
...
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";
对此的任何帮助将不胜感激。
问候坎特