> ## 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 Currently Failed Indexing Status



## OpenAPI

````yaml GET /manage/admin/connector/failed-indexing-status
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/connector/failed-indexing-status:
    get:
      tags:
        - public
      summary: Get Currently Failed Indexing Status
      operationId: get_currently_failed_indexing_status
      parameters:
        - name: secondary_index
          in: query
          required: false
          schema:
            type: boolean
            title: Secondary Index
            default: false
        - name: get_editable
          in: query
          required: false
          schema:
            type: boolean
            description: If true, return editable document sets
            default: false
            title: Get Editable
          description: If true, return editable document sets
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FailedConnectorIndexingStatus'
                title: >-
                  Response Get Currently Failed Indexing Status Manage Admin
                  Connector Failed Indexing Status Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    FailedConnectorIndexingStatus:
      properties:
        cc_pair_id:
          type: integer
          title: Cc Pair Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        error_msg:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Msg
        is_deletable:
          type: boolean
          title: Is Deletable
        connector_id:
          type: integer
          title: Connector Id
        credential_id:
          type: integer
          title: Credential Id
      type: object
      required:
        - cc_pair_id
        - name
        - error_msg
        - is_deletable
        - connector_id
        - credential_id
      title: FailedConnectorIndexingStatus
      description: >-
        Simplified version of ConnectorIndexingStatus for failed indexing
        attempts
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Authorization header with Bearer token

````