| Methods / Administrative Service | |
REST
POST
Retrieves the members of a domain group.
https://[domain]:[port]/AgilePointServer/Admin/GetDomainGroupMembers
https://[domain]:[port]/AgilePointService/Admin/GetDomainGroupMembers
| Name | Description |
|---|---|
| None | Not Applicable |
| Name | Description |
|---|---|
groupDistinguishedName |
|
$("#btnGetDomainGroupMembers").click(function () {
var JSONObject = { groupDistinguishedName: "LDAP:\/\/adHocAdmin"};
$.ajax({
url: "https://mydomain:9011/AgilePointServer/Admin/GetDomainGroupMembers",
data: JSON.stringify(JSONObject)
});
});
public String GetDomainGroupMembers() {
String URI = "https://mydomain:9011/AgilePointServer/Admin/GetDomainGroupMembers";
HTTPOperations ops = new HTTPOperations(domain, userName,
password, appID, locale);
JSONObject postData = new JSONObject();
postData.put("groupDistinguishedName", "LDAP:\\/\\/adHocAdmin");
return ops.POSTMethod(URI, postData.toString());
return "";
}
public string GetDomainGroupMembers()
{
string jsonRequestData = "{
\"groupDistinguishedName\":\"LDAP:\\/\\/adHocAdmin\"}";
string URL = "https://mydomain:9011/AgilePointServer/Admin/GetDomainGroupMembers";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.POSTMethod(URL, jsonRequestData);
}
An array of DomainUser objects.
{
"Department":"String content",
"EMailAddress":"String content",
"FullName":"String content",
"Manager":"String content",
"MemberOf":["String content"],
"Title":"String content",
"UserName":"String content"
}
AgilePoint BPMS v5.0 R2 and higher