Methods / Group, Role, and Rights |
REST
POST
Removes a group from the AgilePoint system.
https://[domain]:[port]/AgilePointServer/Admin/RemoveGroup/[groupName]
https://[domain]:[port]/AgilePointService/Admin/RemoveGroup/[groupName]
Name | Description |
---|---|
groupName |
|
$("#btnRemoveGroup").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Admin/ RemoveGroup/testGroup" }); });
public String RemoveGroup(String groupName) { String URI = "http://mydomain:9011/AgilePointServer/Admin/RemoveGroup/" + groupName; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); JSONObject postData = new JSONObject(); return ops.POSTMethod(URI, postData.toString()); }
public string RemoveGroup() { string URL = "http://mydomain:9011/AgilePointServer/Admin/ RemoveGroup/ProjectLead"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.POSTMethod(URL); }
None.
The response body is empty.
AgilePoint BPMS v5.0 R2 and higher