# Get Email Campaign Stats

`lawmatics_get-email-campaign-stats` · Lawmatics MCP tool · Email Campaigns

Fetch per-recipient delivery statistics (delivery status, opens, clicks, bounces) for an email campaign from Lawmatics by its composite ID (e.g. "MarketingCampaign-1").

## Input

- **campaignId** `string` (required, pattern: ^[A-Za-z]+-\d+$) — Composite campaign ID whose stats to fetch, in the form "TypeofCampaign-id" (e.g. "MarketingCampaign-1")

## Output

- **events** `array` (required) — Per-recipient delivery and engagement events; empty when the campaign has no events
  - **[]** `object`
    - **contactableId** `number` (required) — ID of the contact or matter this email was sent to
    - **email** `string` (required) — Recipient email address
    - **firstName** `string | null` (required) — Recipient first name; null when not on file
    - **lastName** `string | null` (required) — Recipient last name; null when not on file
    - **delivered** `boolean` (required) — Whether the email was successfully delivered to this recipient
    - **bounces** `number` (required) — Number of times the email bounced for this recipient
    - **clicks** `number` (required) — Number of link clicks recorded for this recipient
    - **opens** `number` (required) — Number of opens recorded for this recipient
