Methods / Group, Role, and Rights |
REST
GET
Retrieves a group object with the specified group name.
https://[domain]:[port]/AgilePointServer/Admin/GetGroup/[groupName]
https://[domain]:[port]/AgilePointService/Admin/GetGroup/[groupName]
Name | Description |
---|---|
groupName |
|
$("#btnGetGroup").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Admin/ GetGroup/Finance Coordinator", type: "GET" }); });
public String GetGroup(String GroupName) { String URI = "http://mydomain:9011/AgilePointServer/Admin/GetGroup/" + GroupName; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GETMethod(URI); }
public string GetGroup() { string URL = "http://mydomain:9011/AgilePointServer/Admin/ GetGroup/Users"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GetData(URL); }
WFGroup object. If the specified group does not exist, the output is null.
{ "GetGroupResult":{ "CreatedBy":"DEMO3\\administrator", "CreatedDate":"\/Date(928149600000)\/", "Description":"test", "Enabled":true, "LastModifiedBy":"", "LastModifiedDate":" \/Date(928149600000)\/", "Name":"Finance Coordinator", "ResponsibleUser":"DEMO3\\administrator" }}
AgilePoint BPMS v5.0 R2 and higher