> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getoutbox.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Enrollment Activity

> Unified, paginated activity timeline for one enrollment: sends, opens, clicks, unsubscribes — sorted newest first.



## OpenAPI

````yaml GET /email/campaigns/{campaign_id}/enrollments/{enrollment_id}/activity/
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /email/campaigns/{campaign_id}/enrollments/{enrollment_id}/activity/:
    get:
      tags:
        - email
      summary: Get Campaign Enrollment Activity
      description: >-
        Unified, paginated activity timeline for one enrollment: sends, opens,
        clicks, unsubscribes — sorted newest first.
      operationId: email_campaigns_enrollments_activity_retrieve
      parameters:
        - in: path
          name: campaign_id
          schema:
            type: string
            format: uuid
          required: true
        - in: path
          name: enrollment_id
          schema:
            type: string
            format: uuid
          required: true
        - in: query
          name: page
          schema:
            type: integer
            default: 1
        - in: query
          name: page_size
          schema:
            type: integer
            default: 50
          description: Capped to 200.
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailCampaignEnrollmentActivityResponse'
          description: ''
        '404':
          description: Campaign or enrollment not found.
      security:
        - jwtAuth: []
        - {}
components:
  schemas:
    EmailCampaignEnrollmentActivityResponse:
      type: object
      properties:
        enrollment_id:
          type: string
          format: uuid
        campaign_id:
          type: string
          format: uuid
        contact_id:
          type: string
          format: uuid
          nullable: true
        results:
          type: array
          items:
            type: object
            additionalProperties: {}
          description: >-
            Activity rows with `type` (`email_sent` | `email_opened` |
            `link_clicked` | `contact_unsubscribed`), `occurred_at`, and
            event-specific fields.
        total:
          type: integer
        page:
          type: integer
        page_size:
          type: integer
        total_pages:
          type: integer
      required:
        - campaign_id
        - contact_id
        - enrollment_id
        - page
        - page_size
        - results
        - total
        - total_pages
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````