cURL
curl --request GET \ --url https://app.mailrify.com/api/v1/emails \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "to": "<string>", "from": "<string>", "subject": "<string>", "html": "<string>", "text": "<string>", "createdAt": "<string>", "updatedAt": "<string>", "latestStatus": "SCHEDULED", "scheduledAt": "2023-11-07T05:31:56Z", "domainId": 123, "replyTo": "<string>", "cc": "<string>", "bcc": "<string>" } ], "count": 123 }
List emails
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
"1"
"50"
"2024-01-01T00:00:00Z"
"2024-01-31T23:59:59Z"
"123"
Retrieve a list of emails
Show child attributes