-
Notifications
You must be signed in to change notification settings - Fork 89
Remove user from group
alinach edited this page May 12, 2016
·
5 revisions
Removes a user from a group.
Example:
using System;
using Redmine.Net.Api;
using Redmine.Net.Api.Types;
namespace RedmineTest
{
class Program
{
static void Main(string[] args)
{
string host = "<host>";
string apiKey = "<api-key>";
var manager = new RedmineManager(host, apiKey);
int groupId = <group-id>;
int userId = <user-id-to-be-removed>;
manager.RemoveUserFromGroup(groupId, userId);
}
}
}
-
CRUD Operations
-
List Operations
-
Specific operations
- Attachments
- Issues
- Users
- Groups
- Wiki pages