v93

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-01218121759.7 KB
Email Sends

Get email send

Gets an email delivery snapshot by ID, including queued and test sends, the stored HTML body when available, and retained ClickHouse events when the short-lived row has been cleaned up. Test sends remain hidden from sent-email history but are available through this exact-ID endpoint while their row is retained.

get/email-sends/{emailSendId}

Path parameters

emailSendIdstring required

Email send ID

Response

Email send found

successboolean
source'database' | 'clickhouse_events'
messagestring nullable

Example response

{
  "success": true,
  "emailSend": {
    "id": "send_123",
    "companyId": "company_123",
    "subject": "Welcome"
  },
  "events": [
    {
      "id": "evt_123",
      "emailSendId": "send_123",
      "companyId": "company_123",
      "emailName": "Welcome",
      "eventType": "delivery"
    }
  ]
}