Get Sender Email Address

API Type

REST

HTTP Method

GET

Description

Retrieves the sender email address of the AgilePoint Server.

URL Format (On Premises)

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

URL Format (AgilePoint for Azure)

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

Request Parameters

Name Description
None Not Applicable

JavaScript Code Example

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

Java Code Example

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

C# Code Example

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

Output

The email address that is configured as the sender email address on the AgilePoint Server.

JSON Response Body Example

{
  "GetSenderEMailAddressResult": "admin@mycompany.com"
}

Supported Versions

AgilePoint BPMS v5.0 R2 and higher