| Methods / Administrative Service | |
REST
GET
Retrieves the sender email address of the AgilePoint Server.
https://[domain]:[port]/AgilePointServer/Admin/GetSenderEMailAddress
https://[domain]:[port]/AgilePointService/Admin/GetSenderEMailAddress
| Name | Description |
|---|---|
| None | Not Applicable |
$("#btnGetSenderEMailAddress").click(function () {
$.ajax({
url: "https://mydomain:9011/AgilePointServer/Admin/GetSenderEMailAddress",
type: "GET"
});
});
public String GetSenderEmailAddress() {
String URI = "http://mydomain:9011/AgilePointServer/Admin/GetSenderEMailAddress";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.GETMethod(URI);
}
public string GetSenderEMailAddress()
{
string URI = "http://mydomain:9011/AgilePointServer/Admin/GetSenderEMailAddress";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.GetData(URI);
}
The email address that is configured as the sender email address on the AgilePoint Server.
{
"GetSenderEMailAddressResult": "admin@mycompany.com"
}
AgilePoint BPMS v5.0 R2 and higher