Actions
Defect #10013
closedRest API - Create Version -> Internal server error 500
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
I'm trying to create new version in project using Rest API using C# code:
Uri address = new Uri("http://myredmineserver/projects/test/versions.xml?key=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
      WebRequest request = WebRequest.Create(address);
      request.Method = "POST";
      string xml =
        "<?xml version=\"1.0\"?>\n" +
          "<version>\n" +
          "<project id=\"45\"/>\n" +
          "<name>1.0.0.10</name>\n" +
          "<due_date>2012-01-16</due_date>\n" +
          "<description>test test</description>\n" +
          "</version>";
      byte[] byteArray = Encoding.UTF8.GetBytes(xml);
      request.ContentType = "application/xml";
      request.ContentLength = byteArray.Length;
      Stream dataStream = request.GetRequestStream();
      dataStream.Write(byteArray, 0, byteArray.Length);
      dataStream.Close();
      WebResponse response = request.GetResponse();
      Console.WriteLine(((HttpWebResponse)response).StatusDescription);
	I always get error 500: Internal server error.
      
      Updated by Juraj Tomana almost 14 years ago
      
    
    - Status changed from New to Resolved
 
Using the logs I found problem.
Despite of Rest API documentation (http://www.redmine.org/projects/redmine/wiki/Rest_Versions), parameter "due_date" is wrong. Right name of that parameter is "effective_date".
      
      Updated by Jean-Philippe Lang almost 14 years ago
      
    
    - Category set to REST API
 - Target version set to 1.3.1
 - Resolution set to Fixed
 
Fixed in r8686. The due_date attribute is now accepted.
Actions