Methods / Administrative Service |
REST
GET
Retrieves the SMTP server of the current server configuration.
https://[domain]:[port]/AgilePointServer/Admin/GetSmtpServer
https://[domain]:[port]/AgilePointService/Admin/GetSmtpServer
Name | Description |
---|---|
None | Not Applicable |
$("#btnGetSmtpServer").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Admin/GetSmtpServer", type: "GET" }); });
public String GetSMTPServer() { String URI = "http://mydomain:9011/AgilePointServer/Admin/GetSMTPServer"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GETMethod(URI); }
public string GetSmtpServer() { string URI = "http://mydomain:9011/AgilePointServer/Admin/GetSmtpServer"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GetData(URI); }
A string that contains the name of the AgilePoint system's SMTP server.
{ GetSmtpServerResult: "String content" }
AgilePoint BPMS v5.0 R2 and higher