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

# Get Quick Campaign Results

> Returns the campaign distribution



## OpenAPI

````yaml GET /v2/quick-campaign-results/
openapi: 3.1.0
info:
  title: CloserX.ai API
  description: >-
    The CloserX.ai API provides programmatic access to manage AI-powered calling
    operations, including agent creation, campaign management, contact handling,
    telephony integration, and more. This API enables seamless automation and
    integration with CRM systems, telephony providers, and other third-party
    services for enhanced client communication and business operations.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.closerx.ai/api
security:
  - api_key: []
paths:
  /v2/quick-campaign-results/:
    get:
      description: Returns the campaign distribution
      parameters:
        - name: Company-Name
          in: header
          description: The name of the schema to be used for the request
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Dashboard data response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DashboardQuickCampaignResult'
        '400':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    DashboardQuickCampaignResult:
      type: object
      required:
        - count
        - next
        - previous
        - results
      properties:
        count:
          type: integer
          description: Total number of quick campaign results
        next:
          type: string
          nullable: true
          description: URL to the next page of results
        previous:
          type: string
          nullable: true
          description: URL to the previous page of results
        results:
          type: array
          description: Array of quick campaign result objects
          items:
            type: object
            required:
              - id
              - sid
              - contact_id
              - contact_number
              - email
              - first_name
              - last_name
              - company_name
              - industry
              - address
              - custom1
              - custom2
              - custom3
              - custom4
              - scheduling_charge
              - calender_id
              - appointment_booked
              - call_duration
              - status
              - improvement_tags
              - outcome
              - recording_url
              - transcription
              - transcription_text
              - notes
              - credit_deduction
              - errors
              - response_sentiment
              - triggered_by_crm
              - created_at
              - updated_at
              - quick_campaign
            properties:
              id:
                type: integer
                description: Unique identifier for the quick campaign result
              sid:
                type: string
                nullable: true
                description: Session ID
              contact_id:
                type: integer
                nullable: true
                description: ID of the contact
              contact_number:
                type: string
                description: Contact phone number
              email:
                type: string
                nullable: true
                description: Email address of the contact
              first_name:
                type: string
                nullable: true
                description: First name of the contact
              last_name:
                type: string
                nullable: true
                description: Last name of the contact
              company_name:
                type: string
                nullable: true
                description: Name of the company
              industry:
                type: string
                nullable: true
                description: Industry of the contact
              address:
                type: string
                nullable: true
                description: Address of the contact
              custom1:
                type: string
                nullable: true
                description: Custom field 1
              custom2:
                type: string
                nullable: true
                description: Custom field 2
              custom3:
                type: string
                nullable: true
                description: Custom field 3
              custom4:
                type: string
                nullable: true
                description: Custom field 4
              scheduling_charge:
                type: string
                description: Scheduling charge for the call
              calender_id:
                type: integer
                nullable: true
                description: Calendar ID associated with the call
              appointment_booked:
                type: boolean
                description: Indicates if an appointment was booked
              call_duration:
                type: integer
                description: Duration of the call in seconds
              status:
                type: string
                description: Status of the call
              improvement_tags:
                type: array
                description: Array of tags for improvement
                items:
                  type: string
              outcome:
                type: string
                description: Outcome of the campaign
              recording_url:
                type: string
                nullable: true
                description: URL to the call recording
              transcription:
                type: array
                description: Array of transcription data
                items:
                  type: string
              transcription_text:
                type: string
                description: Full transcription text
              notes:
                type: string
                description: Additional notes for the campaign
              credit_deduction:
                type: string
                description: Credit deduction details
              errors:
                type: string
                description: Any errors encountered
              response_sentiment:
                type: string
                description: Sentiment of the response
              triggered_by_crm:
                type: string
                description: CRM system that triggered the campaign
              created_at:
                type: string
                description: Timestamp when the result was created
              updated_at:
                type: string
                description: Timestamp when the result was last updated
              quick_campaign:
                type: string
                description: Identifier for the quick campaign
    Error:
      required:
        - success
        - message
        - data
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key

````