> ## 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 Email Campaign

> Without `campaign_id`, return every campaign for the authenticated company together with summary counts (enrolled, sent, opened, clicked, replied, active steps). With `campaign_id`, return the full campaign object.



## OpenAPI

````yaml GET /email/campaigns/{campaign_id}/
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}/:
    get:
      tags:
        - email
      summary: List or Get Email Campaigns
      description: >-
        Without `campaign_id`, return every campaign for the authenticated
        company together with summary counts (enrolled, sent, opened, clicked,
        replied, active steps). With `campaign_id`, return the full campaign
        object.
      operationId: email_campaigns_retrieve_2
      parameters:
        - in: path
          name: campaign_id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailCampaignListResponse'
          description: >-
            List response (no `campaign_id`). Detail response uses the
            EmailCampaignSerializer shape.
      security:
        - jwtAuth: []
        - {}
components:
  schemas:
    EmailCampaignListResponse:
      type: object
      properties:
        results:
          type: array
          items:
            type: object
            additionalProperties: {}
          description: Campaign rows with aggregated counts.
        total:
          type: integer
      required:
        - results
        - total
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````