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

# Get Campaigns Details

> **Note: This endpoint is subject to change and may not be supported in future releases.** 

 Retrieves detailed information of a specific campaign



## OpenAPI

````yaml GET /campaigns/{id}
openapi: 3.0.1
info:
  title: Campaign Management API
  description: API to manage marketing campaigns within the system
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: '{{BaseUrl}}'
security:
  - bearerAuth: []
paths:
  /campaigns/{id}:
    get:
      description: Retrieves detailed information of a specific campaign
      operationId: getCampaignDetails
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            description: Unique identifier of the campaign
      responses:
        '200':
          description: Campaign details retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
        '404':
          description: Campaign not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Campaign:
      type: object
      required:
        - id
        - name
        - status
      properties:
        id:
          type: string
          description: Unique identifier for the campaign
        name:
          type: string
          description: Name of the campaign
        status:
          type: string
          description: Current status of the campaign
          enum:
            - scheduled
            - launched
            - paused
            - completed
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
        details:
          type: string
          description: Detailed description of the error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````