Get Email Log Details

GET
https://reloop.sh/api/logs/v1/emails/:id

Path Parameters

idstringRequired
const response = await fetch("https://reloop.sh/api/logs/v1/emails/{id}", {
  method: "GET",
  headers: {
    "Authorization": "Bearer re_123456789",
  },
});

const data = await response.json();
{
  "id": "con_123456789",
  "messageId": "example_messageId",
  "organizationId": "example_organizationId",
  "domainId": "example_domainId",
  "fromEmail": "example_fromEmail",
  "fromName": "example_fromName",
  "toEmails": [
    "example_toEmails"
  ],
  "ccEmails": [
    "example_ccEmails"
  ],
  "bccEmails": [
    "example_bccEmails"
  ],
  "replyTo": "example_replyTo",
  "subject": "Welcome to Reloop",
  "textBody": "example_textBody",
  "htmlBody": "example_htmlBody",
  "status": "example_status",
  "errorMessage": "example_errorMessage",
  "provider": "example_provider",
  "size": 0,
  "headers": {
    "company": "Reloop",
    "role": "Developer"
  },
  "sentAt": "2026-03-23T10:00:00.000Z",
  "deliveredAt": "2026-03-23T10:00:00.000Z",
  "failedAt": "2026-03-23T10:00:00.000Z",
  "createdAt": "2026-03-23T10:00:00.000Z",
  "updatedAt": "2026-03-23T10:00:00.000Z",
  "events": [
    {
      "id": "con_123456789",
      "type": "example_type",
      "metadata": null,
      "createdAt": "2026-03-23T10:00:00.000Z"
    }
  ]
}

Was this page helpful?

Edit this page