List all automated email event logs

Returns a list of automated email event logs. The automated email event logs are returned sorted by creation date in ascending order.

GET/v3/automated-email-event-logs
JWT
automatedEmailEventLog:read

Parameters

NameTypeInDescription
pageintegerqueryThe page number.
limitintegerqueryThe number of records per page. Must be a number between 1 and 100.
sortstringqueryThe sort string to sort the returned records e.g. "-createdAt"
automatedEmailIdobjectqueryUnique identifier for the automated email.
searchstringquerySearch string.
idobjectqueryID of the resource.
createdAtobjectqueryDate of creation
updatedAtobjectqueryDate of last update

Responses

200 OK
[
  {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "fromName": "string",
    "fromEmail": "string",
    "cc": "string",
    "bcc": "string",
    "toName": "string",
    "toEmail": "string",
    "subject": "string",
    "body": "string",
    "replyTo": "string",
    "event": "string",
    "attempts": 0,
    "status": "pending",
    "lastAttemptedAt": "2019-08-24T14:15:22Z",
    "errorMessage": "string",
    "automatedEmailId": "string"
  }
]