Rest api with csharp » History » Revision 4
Revision 3 (Guriy Samarin, 2019-12-11 13:00) → Revision 4/6 (Seung Soo Mun, 2022-04-15 16:36)
h1. Using the REST API with .NET
"Redmine .NET API library":https://code.google.com/p/redmine-net-api is a FREE third-party C# library that can be used to access the Redmine API. It is released under Apache 2 open-source license.
To use this library from PowerShell, see [[REST API with PowerShell]]
Sample usage:
<pre>
using System;
using System.Collections.Specialized;
using Redmine.Net.Api;
using Redmine.Net.Api.Types;
namespace RedmineTest
{
class Program
{
static void Main(string[] args)
{
string host = "";
string apiKey = "";
var manager = new RedmineManager(host, apiKey);
var parameters = new NameValueCollection {{"status_id", "*"}};
foreach (var issue in manager.GetObjects<Issue>(parameters))
{
Console.WriteLine("#{0}: {1}", issue.Id, issue.Subject);
}
//Create a issue.
var newIssue = new Issue { Subject = "test", Project = new IdentifiableName{Id = 1}};
manager.CreateObject(newIssue);
}
}
}
</pre>