Methods / Administrative Service |
REST
GET
Retrieves the default locale for the AgilePoint Server.
https://[domain]:[port]/AgilePointServer/Admin/GetLocale
https://[domain]:[port]/AgilePointService/Admin/GetLocale
Name | Description |
---|---|
None | Not Applicable |
$("#btnGetLocale").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Admin/GetLocale", type: "GET" }); });
public String GetLocale() { String URI = "http://mydomain:9011/AgilePointServer/Admin/GetLocale"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GETMethod(URI); }
public string GetLocale() { string URI = "http://mydomain:9011/AgilePointServer/Admin/GetLocale"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GetData(URI); }
Locale abbreviation—for example, en-US.
{ "GetLocaleResult": "en-US" }
AgilePoint BPMS v5.0 R2 and higher