> ## 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 Connectors By Credential

> Get a list of connectors. Allow filtering by a specific credential id.



## OpenAPI

````yaml GET /manage/admin/connector
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:
    get:
      tags:
        - public
      summary: Get Connectors By Credential
      description: Get a list of connectors. Allow filtering by a specific credential id.
      operationId: get_connectors_by_credential
      parameters:
        - name: credential
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            title: Credential
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ConnectorSnapshot'
                title: >-
                  Response Get Connectors By Credential Manage Admin Connector
                  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    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
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
    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

````