> ## 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.

# List Campaign Enrollments

> Paginated list of contacts enrolled in a campaign. Each row includes the contact's progress (current step, next send time, terminal state) and the related campaign step metadata.



## OpenAPI

````yaml GET /email/campaigns/{campaign_id}/enrollments/
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/:
    get:
      tags:
        - email
      summary: List Campaign Enrollments
      description: >-
        Paginated list of contacts enrolled in a campaign. Each row includes the
        contact's progress (current step, next send time, terminal state) and
        the related campaign step metadata.
      operationId: email_campaigns_enrollments_retrieve
      parameters:
        - in: path
          name: campaign_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: 20
          description: Capped to 200.
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailCampaignEnrollmentListResponse'
          description: ''
        '404':
          description: Campaign not found.
      security:
        - jwtAuth: []
        - {}
components:
  schemas:
    EmailCampaignEnrollmentListResponse:
      type: object
      properties:
        results:
          type: array
          items:
            type: object
            additionalProperties: {}
          description: >-
            Enrollment rows with contact info, status, current step, and
            timestamps.
        total:
          type: integer
        page:
          type: integer
        page_size:
          type: integer
        total_pages:
          type: integer
      required:
        - page
        - page_size
        - results
        - total
        - total_pages
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````