Methods / Administrative Service |
REST
GET
Retrieves the domain name to which AgilePoint Server connects.
https://[domain]:[port]/AgilePointServer/Admin/GetDomainName
https://[domain]:[port]/AgilePointService/Admin/GetDomainName
Name | Description |
---|---|
None | Not Applicable |
$("#btnGetDomainName").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Admin/GetDomainName", type: "GET" }); });
public String GetDomainName() { String URI = "http://mydomain:9011/AgilePointServer/Admin/GetDomainName"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GETMethod(URI); }
public string GetDomainName(string userName) { string URI = "http://mydomain:9011/AgilePointServer/Admin/GetDomainName"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GetData(URI); }
A string containing the domain name of the AgilePoint Server machine.
"String content"
AgilePoint BPMS v5.0 R2 and higher