List all automated emails

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

GET/v3/automated-emails
JWT
automatedEmail: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"
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",
    "name": "string",
    "fromName": "string",
    "fromEmail": "string",
    "cc": "string",
    "bcc": "string",
    "subject": "string",
    "body": "string",
    "replyTo": "string",
    "event": "string",
    "enabled": true,
    "custom": true,
    "sent": 0,
    "productIds": [
      "string"
    ]
  }
]