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

# Get campaign



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/v1/campaigns/{id}/
openapi: 3.0.3
info:
  title: Rezora IO API
  version: 1.0.0
  description: >-
    Partner-safe Rezora API reference for authenticated customer and integration
    workflows.
servers:
  - url: https://api.rezora.io
    description: Production API
security: []
tags:
  - name: Billing & Credits
    description: Credit balances, transactions, and receipts.
  - name: Agents
    description: AI agent templates and active campaign-ready agents.
  - name: Contacts
    description: Contact groups, contacts, and imports.
  - name: Campaigns
    description: Campaign creation, dispatch, reporting, recordings, and call attempts.
  - name: Appointments & Calls
    description: Booked appointments and customer call records.
paths:
  /api/v1/campaigns/{id}/:
    get:
      tags:
        - Campaigns
      summary: Get campaign
      operationId: campaigns_get
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
          description: ''
      security:
        - jwtAuth: []
components:
  schemas:
    Campaign:
      type: object
      description: |-
        Shapes the Campaign row to match the Supabase response structure the
        frontend already consumes (nested user_agents / contact_groups objects).
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        name:
          type: string
          maxLength: 255
        description:
          type: string
          nullable: true
        status:
          type: string
          maxLength: 32
        paused_reason:
          type: string
          nullable: true
        agent_id:
          type: string
          format: uuid
          nullable: true
        contact_group_id:
          type: string
          format: uuid
          nullable: true
        concurrent_calls:
          type: integer
          maximum: 9223372036854776000
          minimum: -9223372036854776000
          format: int64
        max_retry_days:
          type: integer
          maximum: 9223372036854776000
          minimum: -9223372036854776000
          format: int64
        calling_hours: {}
        schedule_config: {}
        active_days: {}
        field_mappings: {}
        selected_contact_fields: {}
        timezone:
          type: string
          maxLength: 64
        call_insights: {}
        post_call_analyzers:
          type: array
          items:
            type: object
            additionalProperties: {}
          readOnly: true
        started_at:
          type: string
          format: date-time
          nullable: true
        completed_at:
          type: string
          format: date-time
          nullable: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
        user_agents:
          type: object
          additionalProperties: {}
          nullable: true
          readOnly: true
        contact_groups:
          type: object
          additionalProperties: {}
          nullable: true
          readOnly: true
      required:
        - contact_groups
        - created_at
        - id
        - post_call_analyzers
        - updated_at
        - user_agents
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````