# Get events for specific email Retrieve all events for a specific email in chronological order. Note: This is an enterprise feature that must be enabled on your account. Endpoint: GET /api/v1/emails/{email_id}/events Version: 1.0.0 Security: BearerAuth ## Path parameters: - `email_id` (string, required) Email ID ## Response 200 fields (application/json): - `email_id` (string) - `events` (array) - `events.id` (string) - `events.customer_id` (string) - `events.event_type` (string) Enum: "queued", "sent", "delivered", "bounced", "complained", "opened", "clicked", "unsubscribed" - `events.status` (string) - `events.recipient` (string) - `events.from` (string) - `events.timestamp` (string) - `events.event_data` (object) Additional event metadata (may be redacted based on privacy level) - `events.created_at` (string) - `timeline` (array) - `timeline.details` (object) ## Response 401 fields (application/json): - `error` (string) Error code or message ## Response 403 fields (application/json): - `error` (string) - `message` (string) ## Response 404 fields (application/json): - `error` (string) Example: "Email not found or access denied" ## Response 500 fields (application/json): - `error` (string) Error code or message