Methods / Methods for Email and Notifications |
REST
POST
Cancels the failed mail deliverable record based on a given message identifier. Note that canceling the failed mail deliverable record prevents it from being recycled or present on a given interval by the AgilePoint engine.
https://[domain]:[port]/AgilePointServer/Workflow/CancelMailDeliverable/[mailID]
https://[domain]:[port]/AgilePointService/Workflow/CancelMailDeliverable/[mailID]
Name | Description |
---|---|
mailID |
|
$("#btnCancelMailDeliverable").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Workflow/ CancelMailDeliverable/31C364347D364D0AA2EB2853340CA25D", }); });
public String CancelMailDeliverable(String mailID) { String URI = "http://mydomain:9011/AgilePointServer/Workflow/CancelMailDeliverable/" + mailID; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); JSONObject postData = new JSONObject(); return ops.POSTMethod(URI, postData.toString()); }
public string CancelMailDeliverable() { string URI = "http://mydomain:9011/AgilePointServer/Workflow/ CancelMailDeliverable/4802495DCA8840EFAEE2943028EFAFEE"; 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