| Methods / Administrative Service | |
REST
POST
Retrieves all the domain group objects.
https://[domain]:[port]/AgilePointServer/Admin/GetDomainGroups
https://[domain]:[port]/AgilePointService/Admin/GetDomainGroups
| Name | Description |
|---|---|
| None | Not Applicable |
| Name | Description |
|---|---|
Filter |
|
LDAPPath |
|
$("#btnGetDomainGroups").click(function () {
var JSONObject = {
LDAPPath: "LDAP:\/\/DC=DEMO3,DC=com",
Filter: ""
};
$.ajax({
url: "https://mydomain:9011/AgilePointServer/Admin/GetDomainGroups",
data: JSON.stringify(JSONObject)
});
});
public String GetDomainGroups() {
String URI = "https://mydomain:9011/AgilePointServer/Admin/GetDomainGroups";
HTTPOperations ops = new HTTPOperations(domain, userName,
password, appID, locale);
JSONObject postData = new JSONObject();
postData.put("LDAPPath", "LDAP:\\/\\/DC=DEMO3,DC=com");
postData.put("Filter", "");
return ops.POSTMethod(URI, postData.toString());
return "";
}
public string GetDomainGroups()
{
string jsonRequestData = "{
\"LDAPPath\":\"LDAP:\\/\\/DC=demo3,
DC=com\",
\"Filter\":\"\"}";
string URL = "https://mydomain:9011/AgilePointServer/Admin/GetDomainGroups";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.POSTMethod(URL, jsonRequestData);
}
Array of KeyValue objects. If the specified group is not found, the output is null.
[{
"Key":"String content",
"Value":"String content"
}]
AgilePoint BPMS v5.0 R2 and higher