GET
/
api
/
end_user_emails
curl --request GET \
  --url https://app.herondata.io/api/end_user_emails \
  --header 'Authorization: Basic <encoded-value>'
{
  "_meta": {
    "count": 123,
    "has_more": true,
    "page": 123,
    "total_pages": 123
  },
  "emails": [
    {
      "email": {
        "created": "2023-11-07T05:31:56Z",
        "date_sent": "2023-11-07T05:31:56Z",
        "date_sent_string": "<string>",
        "from_address": "<string>",
        "from_address_domain": "<string>",
        "from_name": "<string>",
        "heron_id": "<string>",
        "html_body": "<string>",
        "html_or_text_body": "<string>",
        "is_reply": true,
        "processing_status": "new",
        "subject": "<string>",
        "subject_cleaned": "<string>",
        "text_body": "<string>"
      },
      "end_user_heron_id": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

limit
integer
required
Required range: x >= 1
page
integer
required
Required range: x >= 0

Response

200 - application/json
OK
_meta
object
emails
object[]