---
title: "Get Email Logs"
method: GET
path: "/email/logs"
tags: ["Email"]
---

# Get Email Logs

`GET /email/logs`

Get email logs for the current customer.

Args:
    limit: Maximum number of records to return
    offset: Number of records to skip
    db_session: Database session
    current_user: Authenticated user

Returns:
    List of email log records

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- EmailLogResponse[]
  - `email_id` string, uuid, required
  - `customer_id` string, uuid, required
  - `inquiry_id` string, uuid, nullable
  - `lead_id` string, uuid, nullable
  - `template_name` string, required
  - `to_recipients` string[], required
  - `cc_recipients` string[], nullable
  - `bcc_recipients` string[], nullable
  - `subject` string, required
  - `template_args` object, nullable
  - `sent_at` string, date-time, nullable
  - `created_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/openintake/apis/fastapi.md) · [All operations](https://skmtc.dev/openintake/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openintake/fastapi/revisions/4a81645b59f6/schema)
