.NET C# API を使用して、特定のユーザーの現在のすべてのタスクを取得したいと考えています。(WS2.0)
QueryString: ( https://rally1.rallydev.com/slm/doc/webservice/(((Owner.UserName = "xxx") AND (Iteration.StartDate <= today)) AND (Iteration.EndDate >= today))
で試すことで機能します)
以下のコードでは、404
例外が発生します。
Request request = new Request("task");
request.Fetch = new List<string>()
{
"_refObjectName"
};
request.Query = new Query("Owner.UserName", Query.Operator.Equals, "xxx");
手伝ってもらえますか?前もって感謝します