Skip to main content
GET
/
emails
/
{id}
Get email by ID
curl --request GET \
  --url https://api.maxcare.ai/v3/emails/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Organization-Id: <x-organization-id>'
{
  "code": "success",
  "data": {
    "id": "eml_a7c3f1e28b4d4a9eb5c6d7e8f9012345",
    "recipientEmail": "jane.doe@example.com",
    "recipientType": "patient",
    "recipientId": "pat_8de030393a9e417ab2b3a8b8df183631",
    "emailType": "appointment_reminder",
    "subject": "Your upcoming appointment on March 25",
    "fromAddress": "notifications@accounts.maxcare.ai",
    "status": "sent",
    "scheduledAt": null,
    "sentAt": "2026-03-25 10:00:01.234+00",
    "deliveredAt": "2026-03-25 10:00:03.567+00",
    "openedAt": null,
    "bouncedAt": null,
    "createdAt": "2026-03-25 09:59:58.891+00"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.maxcare.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Marketplace API key

Headers

X-Organization-Id
string
required

Target clinic organization ID

Path Parameters

id
string
required

Email send record ID

Response

Success

code
string
required

Response code

Example:

"success"

data
object
required