Methods / Group, Role, and Rights |
REST
GET
Retrieves the members of a specified group.
https://[domain]:[port]/AgilePointServer/Admin/GetGroupMembers/[groupName]
https://[domain]:[port]/AgilePointService/Admin/GetGroupMembers/[groupName]
Name | Description |
---|---|
groupName |
|
$("#btnGetGroupMembers").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Admin/ GetGroupMembers/Finance Coordinator", type: "GET" }); });
public String GetGroupMembers(String groupName) { String URI = "http://mydomain:9011/AgilePointServer/Admin/GetGroupMembers/" + groupName; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GETMethod(URI); }
public string GetGroupMembers() { string URL = "http://mydomain:9011/AgilePointServer/Admin/ GetGroupMembers/Users"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GetData(URL); }
An array of WFGroupMember objects.
{ "GetGroupMembersResult":[{ "ClientData":"", "CreatedBy":"DEMO3\\administrator", "CreatedDate": "\/Date(928149600000)\/", "Description":"", "Enabled":true, "Member":"DEMO3\\administrator", "Name":"Finance Coordinator" }] }
AgilePoint BPMS v5.0 R2 and higher