Read Email Logs (Database)

-------------------------
6. READ EMAIL LOGS (DATABASE)
-------------------------

Read Email Logs (Database): Returns recent email delivery logs stored by UMVA for a given recipient email address.

Endpoint: POST /messages/read

Parameters (JSON body):

  • api_key (required, string): Your Email Messaging API key.
  • type (required, string): Must be "email" for email logs.
  • recipient (required, string): Recipient email address you want to inspect.
  • limit (optional, integer): Maximum number of log records to return.

Example Request:

curl -X POST "https://umva.net/api/messaging/messages/read" \
  -H "Content-Type: application/json" \
  -d '{
    "api_key": "YOUR_EMAIL_API_KEY",
    "type": "email",
    "recipient": "[email protected]",
    "limit": 5
  }'

Response: Returns an array of email log entries (such as subject, status, timestamp, and any provider-level IDs).