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
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"
}
]
}