---
title: "List Events"
method: GET
path: "/events"
tags: ["Events"]
---

# List Events

`GET /events`

Lists activity events (sends, opens, clicks, replies, etc.)
with filtering by team, campaign, contact, and event type.

## Query parameters

- `TeamId` string, uuid
- `CampaignId` string, uuid
- `ContactId` string, uuid
- `SenderId` string, uuid
- `type` 'scheduled' | 'sent' | 'open' | 'reply' | 'click' | 'bounce' | 'unsubscribe'
- `channel` 'email' | 'linkedin' | 'text' | 'call'
- `limit` integer
- `offset` integer
- `start_date` string, date-time
- `end_date` string, date-time

## Response `200`

List of events

- EventListResponse
  - `success` boolean
  - `request_id` string
  - `data` Event[]
    - `id` string, uuid
    - `type` 'scheduled' | 'sent' | 'open' | 'reply' | 'unsubscribe' | 'visit' | 'message' | 'follow' | 'task' | 'like' | 'connection_request' | 'move_contact'
    - `channel` 'email' | 'linkedin' | 'text' | 'call' | 'instagram'
    - `date` string, date-time
    - `sequence_step` integer
    - `opened` boolean
    - `clicked` boolean
    - `replied` boolean
    - `bounced` boolean
    - `autoresponse` boolean
    - `opens` integer
    - `clicks` integer
    - `replies` integer
    - `unsubscribes` integer
    - `subject` string
    - `contact` object
      - `id` string, uuid
      - `email` string
      - `first_name` string
      - `last_name` string
    - `campaign` object
      - `id` string, uuid
      - `name` string
    - `sender` object
      - `id` string, uuid
      - `email` string
      - `send_as` string
    - `campaign_id` string, uuid
    - `contact_id` string, uuid
    - `sender_id` string, uuid
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `pagination` Pagination
    - `limit` integer
    - `offset` integer
    - `total` integer
    - `has_more` boolean

---

[API](https://skmtc.dev/supersend/apis/supersend-api.md) · [All operations](https://skmtc.dev/supersend/apis/supersend-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/supersend/supersend-api/revisions/f0cbeaa12643/schema)
