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

# Get CC Pair Index Attempts



## OpenAPI

````yaml GET /manage/admin/cc-pair/{cc_pair_id}/index-attempts
openapi: 3.1.0
info:
  title: Onyx API
  description: Onyx API for AI-powered enterprise search and chat
  version: Development
servers:
  - url: https://cloud.onyx.app/api
security: []
paths:
  /manage/admin/cc-pair/{cc_pair_id}/index-attempts:
    get:
      tags:
        - public
      summary: Get Cc Pair Index Attempts
      operationId: get_cc_pair_index_attempts
      parameters:
        - name: cc_pair_id
          in: path
          required: true
          schema:
            type: integer
            title: Cc Pair Id
        - name: page_num
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Page Num
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            default: 10
            title: Page Size
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedReturn_IndexAttemptSnapshot_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    PaginatedReturn_IndexAttemptSnapshot_:
      properties:
        items:
          items:
            $ref: '#/components/schemas/IndexAttemptSnapshot'
          type: array
          title: Items
        total_items:
          type: integer
          title: Total Items
      type: object
      required:
        - items
        - total_items
      title: PaginatedReturn[IndexAttemptSnapshot]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    IndexAttemptSnapshot:
      properties:
        id:
          type: integer
          title: Id
        status:
          anyOf:
            - $ref: '#/components/schemas/IndexingStatus'
            - type: 'null'
        from_beginning:
          type: boolean
          title: From Beginning
        new_docs_indexed:
          type: integer
          title: New Docs Indexed
        total_docs_indexed:
          type: integer
          title: Total Docs Indexed
        docs_removed_from_index:
          type: integer
          title: Docs Removed From Index
        error_msg:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Msg
        error_count:
          type: integer
          title: Error Count
        full_exception_trace:
          anyOf:
            - type: string
            - type: 'null'
          title: Full Exception Trace
        time_started:
          anyOf:
            - type: string
            - type: 'null'
          title: Time Started
        time_updated:
          type: string
          title: Time Updated
        poll_range_start:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Poll Range Start
        poll_range_end:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Poll Range End
      type: object
      required:
        - id
        - status
        - from_beginning
        - new_docs_indexed
        - total_docs_indexed
        - docs_removed_from_index
        - error_msg
        - error_count
        - full_exception_trace
        - time_started
        - time_updated
      title: IndexAttemptSnapshot
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    IndexingStatus:
      type: string
      enum:
        - not_started
        - in_progress
        - success
        - canceled
        - failed
        - completed_with_errors
      title: IndexingStatus
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Authorization header with Bearer token

````