Get Expecting Send Mail Deliverable

API Type

REST

HTTP Method

GET

Description

Retrieves all the failed and scheduled to resend email notifications.

URL Format (On Premises)

https://[domain]:[port]/AgilePointServer/Workflow/GetExpectingSendMailDeliverable

URL Format (AgilePoint for Azure)

https://[domain]:[port]/AgilePointService/Workflow/GetExpectingSendMailDeliverable

Request Parameters

Name Description
None Not Applicable

JavaScript Code Example

$("#btnGetExpectingSendMailDeliverable").click(function () {
  
  $.ajax({
    url: "https://mydomain:9011/AgilePointServer/Workflow/GetExpectingSendMailDeliverable",
    type: "GET"
  });
  
});

Output

Array of WFMailDeliverable objects.

JSON Response Body Example

{
  "GetExpectingSendMailDeliverableResult": [{
  "ActivityInstID": "00000000000000000000000000000000",
  "CreatedDate": "\/Date(1393646742890+0000)\/",
  "DeliveryTime": 1,
  "ID": "02ECFD464F9A4A1AB1D468A889FE30C1",
  "Mail": {
    "Attachments": "",
    "BCC": null,
    "CC": null,
    "Content": "<html>...<\/html>",
    "Format": 2,
    "From": "brian.lucas@mycompany.com",
    "LeftToRight": true,
    "MailPriority": 0,
    "Name": "0A81E99B4E694897A9322A89CCF642CE",
    "Subject": "Subject",
    "To": "lilly.allen@mycompany.com"
    },
  "NextSendingDate": "\/Date(1393646863983+0000)\/",
  "ProcInstID": "00000000000000000000000000000000",
  "Reason": "",
  "Session": 0,
  "Status": "Failure"
  }]
}

Supported Versions

AgilePoint BPMS v5.0 R2 and higher