Get System User

API Type

REST

HTTP Method

GET

Description

Retrieves the name of the system user.

URL Format (On Premises)

https://[domain]:[port]/AgilePointServer/Admin/GetSystemUser

URL Format (AgilePoint for Azure)

https://[domain]:[port]/AgilePointService/Admin/GetSystemUser

Request Parameters

Name Description
None Not Applicable

JavaScript Code Example

$("#btnGetSystemUser").click(function () {
  
  $.ajax({
    url: "https://mydomain:9011/AgilePointServer/Admin/GetSystemUser",
    type: "GET"
  });
  
});

Java Code Example

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);
}

C# Code Example

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);
  }

Output

Returns the name of the system user as a string value.

JSON Response Body Example

{
  "GetSystemUserResult":"Administrator"
}

Supported Versions

AgilePoint BPMS v5.0 R2 and higher