I want to create a new Rally user with the following C# code
DynamicJsonObject newUser = new DynamicJsonObject();
newUser["FirstName"] = "Joe";
newUser["LastName"] = "Developer";
newUser["UserName"] = "joejoe@joejoe.com";
newUser["DisplayName"] = "The developer";
CreateResult createResult = restApi.Create("User", newUser);
But it fails all the time, anyone has an idea?
Thanks MilkyWayJoe for reminding me to look at the attached error message
It turns out that “EmailAddress” is required, although it might be similar to “UserName” field above
This solves the problem