| Methods / Administrative Service | |
REST
GET
Retrieves the name of the system user.
https://[domain]:[port]/AgilePointServer/Admin/GetSystemUser
https://[domain]:[port]/AgilePointService/Admin/GetSystemUser
| Name | Description |
|---|---|
| None | Not Applicable |
$("#btnGetSystemUser").click(function () {
$.ajax({
url: "https://mydomain:9011/AgilePointServer/Admin/GetSystemUser",
type: "GET"
});
});
public String GetSystemUser() {
String URI = "http://mydomain:9011/AgilePointServer/Admin/GetSystemUser";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.GETMethod(URI);
}
public string GetSystemUser()
{
string URI = "http://mydomain:9011/AgilePointServer/Admin/GetSystemUser";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.GetData(URI);
}
Returns the name of the system user as a string value.
{
"GetSystemUserResult":"Administrator"
}
AgilePoint BPMS v5.0 R2 and higher