Methods / Methods for Email and Notifications |
REST
POST
Resends the mail deliverable with a specified mail ID.
https://[domain]:[port]/AgilePointServer/Workflow/ResendMailDeliverable/[mailID]
https://[domain]:[port]/AgilePointService/Workflow/ResendMailDeliverable/[mailID]
Name | Description |
---|---|
mailID |
|
$("#btnResendMailDeliverable").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Workflow/ ResendMailDeliverable/31C364347D364D0AA2EB2853340CA25D", }); });
public String ResendMailDeliverable(String mailID) { String URI = "http://mydomain:9011/AgilePointServer/Workflow/ResendMailDeliverable/" + mailID; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); JSONObject postData = new JSONObject(); return ops.POSTMethod(URI, postData.toString()); }
public string ResendMailDeliverable() { string URI = "http://mydomain:9011/AgilePointServer/Workflow/ ResendMailDeliverable/B17F0750FBAB4043A8E319C9B5EF1EB2"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.POSTMethod(URI, ""); }
None.
The response body is empty.
AgilePoint BPMS v5.0 R2 and higher