> ## 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 Full Info



## OpenAPI

````yaml GET /manage/admin/cc-pair/{cc_pair_id}
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}:
    get:
      tags:
        - public
      summary: Get Cc Pair Full Info
      operationId: get_cc_pair_full_info
      parameters:
        - name: cc_pair_id
          in: path
          required: true
          schema:
            type: integer
            title: Cc Pair Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CCPairFullInfo'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    CCPairFullInfo:
      properties:
        id:
          type: integer
          title: Id
        name:
          type: string
          title: Name
        status:
          $ref: '#/components/schemas/ConnectorCredentialPairStatus'
        in_repeated_error_state:
          type: boolean
          title: In Repeated Error State
        num_docs_indexed:
          type: integer
          title: Num Docs Indexed
        connector:
          $ref: '#/components/schemas/ConnectorSnapshot'
        credential:
          $ref: '#/components/schemas/CredentialSnapshot'
        number_of_index_attempts:
          type: integer
          title: Number Of Index Attempts
        last_index_attempt_status:
          anyOf:
            - $ref: '#/components/schemas/IndexingStatus'
            - type: 'null'
        latest_deletion_attempt:
          anyOf:
            - $ref: '#/components/schemas/DeletionAttemptSnapshot'
            - type: 'null'
        access_type:
          $ref: '#/components/schemas/AccessType'
        is_editable_for_current_user:
          type: boolean
          title: Is Editable For Current User
        deletion_failure_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Deletion Failure Message
        indexing:
          type: boolean
          title: Indexing
        creator:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Creator
        creator_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Creator Email
        last_indexed:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Indexed
        last_pruned:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Pruned
        last_full_permission_sync:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Full Permission Sync
        overall_indexing_speed:
          anyOf:
            - type: number
            - type: 'null'
          title: Overall Indexing Speed
        latest_checkpoint_description:
          anyOf:
            - type: string
            - type: 'null'
          title: Latest Checkpoint Description
        last_permission_sync_attempt_status:
          anyOf:
            - $ref: '#/components/schemas/PermissionSyncStatus'
            - type: 'null'
        permission_syncing:
          type: boolean
          title: Permission Syncing
        last_permission_sync_attempt_finished:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Permission Sync Attempt Finished
        last_permission_sync_attempt_error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Permission Sync Attempt Error Message
      type: object
      required:
        - id
        - name
        - status
        - in_repeated_error_state
        - num_docs_indexed
        - connector
        - credential
        - number_of_index_attempts
        - last_index_attempt_status
        - latest_deletion_attempt
        - access_type
        - is_editable_for_current_user
        - deletion_failure_message
        - indexing
        - creator
        - creator_email
        - last_indexed
        - last_pruned
        - last_full_permission_sync
        - overall_indexing_speed
        - latest_checkpoint_description
        - last_permission_sync_attempt_status
        - permission_syncing
        - last_permission_sync_attempt_finished
        - last_permission_sync_attempt_error_message
      title: CCPairFullInfo
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ConnectorCredentialPairStatus:
      type: string
      enum:
        - SCHEDULED
        - INITIAL_INDEXING
        - ACTIVE
        - PAUSED
        - DELETING
        - INVALID
      title: ConnectorCredentialPairStatus
    ConnectorSnapshot:
      properties:
        name:
          type: string
          title: Name
        source:
          $ref: '#/components/schemas/DocumentSource'
        input_type:
          $ref: '#/components/schemas/InputType'
        connector_specific_config:
          additionalProperties: true
          type: object
          title: Connector Specific Config
        refresh_freq:
          anyOf:
            - type: integer
            - type: 'null'
          title: Refresh Freq
        prune_freq:
          anyOf:
            - type: integer
            - type: 'null'
          title: Prune Freq
        indexing_start:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Indexing Start
        id:
          type: integer
          title: Id
        credential_ids:
          items:
            type: integer
          type: array
          title: Credential Ids
        time_created:
          type: string
          format: date-time
          title: Time Created
        time_updated:
          type: string
          format: date-time
          title: Time Updated
      type: object
      required:
        - name
        - source
        - input_type
        - connector_specific_config
        - id
        - credential_ids
        - time_created
        - time_updated
      title: ConnectorSnapshot
    CredentialSnapshot:
      properties:
        credential_json:
          additionalProperties: true
          type: object
          title: Credential Json
        admin_public:
          type: boolean
          title: Admin Public
        source:
          $ref: '#/components/schemas/DocumentSource'
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        curator_public:
          type: boolean
          title: Curator Public
          default: false
        groups:
          items:
            type: integer
          type: array
          title: Groups
        id:
          type: integer
          title: Id
        user_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: User Id
        user_email:
          anyOf:
            - type: string
            - type: 'null'
          title: User Email
        time_created:
          type: string
          format: date-time
          title: Time Created
        time_updated:
          type: string
          format: date-time
          title: Time Updated
      type: object
      required:
        - credential_json
        - admin_public
        - source
        - id
        - user_id
        - time_created
        - time_updated
      title: CredentialSnapshot
    IndexingStatus:
      type: string
      enum:
        - not_started
        - in_progress
        - success
        - canceled
        - failed
        - completed_with_errors
      title: IndexingStatus
    DeletionAttemptSnapshot:
      properties:
        connector_id:
          type: integer
          title: Connector Id
        credential_id:
          type: integer
          title: Credential Id
        status:
          $ref: '#/components/schemas/TaskStatus'
      type: object
      required:
        - connector_id
        - credential_id
        - status
      title: DeletionAttemptSnapshot
    AccessType:
      type: string
      enum:
        - public
        - private
        - sync
      title: AccessType
    PermissionSyncStatus:
      type: string
      enum:
        - not_started
        - in_progress
        - success
        - canceled
        - failed
        - completed_with_errors
      title: PermissionSyncStatus
      description: Status enum for permission sync attempts
    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
    DocumentSource:
      type: string
      enum:
        - ingestion_api
        - slack
        - web
        - google_drive
        - gmail
        - requesttracker
        - github
        - gitbook
        - gitlab
        - guru
        - bookstack
        - outline
        - confluence
        - jira
        - slab
        - productboard
        - file
        - coda
        - notion
        - zulip
        - linear
        - hubspot
        - document360
        - gong
        - google_sites
        - zendesk
        - loopio
        - dropbox
        - sharepoint
        - teams
        - salesforce
        - discourse
        - axero
        - clickup
        - mediawiki
        - wikipedia
        - asana
        - s3
        - r2
        - google_cloud_storage
        - oci_storage
        - xenforo
        - not_applicable
        - discord
        - freshdesk
        - fireflies
        - egnyte
        - airtable
        - highspot
        - drupal_wiki
        - imap
        - bitbucket
        - testrail
        - mock_connector
        - user_file
      title: DocumentSource
    InputType:
      type: string
      enum:
        - load_state
        - poll
        - event
        - slim_retrieval
      title: InputType
    TaskStatus:
      type: string
      enum:
        - PENDING
        - STARTED
        - SUCCESS
        - FAILURE
      title: TaskStatus
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Authorization header with Bearer token

````