Methods / Group, Role, and Rights |
REST
GET
Retrieves all the group objects in the system.
https://[domain]:[port]/AgilePointServer/Admin/GetGroups
Name | Description |
---|---|
None | Not Applicable |
$("#btnGetGroups").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Admin/GetGroups", type: "GET" }); });
public String GetGroups() { String URI = "http://mydomain:9011/AgilePointServer/Admin/GetGroups"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GETMethod(URI); }
public string GetGroups() { string URL = "http://mydomain:9011/AgilePointServer/Admin/GetGroups"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GetData(URL); }
An Array of WFGroup objects.
{ "GetGroupsResult":[{ "CreatedBy":"DEMO3\\administrator", "CreatedDate": "\/Date(928149600000)\/", "Description":"test123", "Enabled":true, "LastModifiedBy":"DEMO3\\administrator", "LastModifiedDate": "\/Date(928149600000)\/", "Name":"Test1", "ResponsibleUser":"DEMO3\\administrator" }] }
AgilePoint BPMS v5.0 R2 and higher