> ## 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.

# Update CC Pair Status

> This method returns nearly immediately. It simply sets some signals and
optimistically assumes any running background processes will clean themselves up.
This is done to improve the perceived end user experience.

Returns HTTPStatus.OK if everything finished.



## OpenAPI

````yaml PUT /manage/admin/cc-pair/{cc_pair_id}/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/cc-pair/{cc_pair_id}/status:
    put:
      tags:
        - public
      summary: Update Cc Pair Status
      description: >-
        This method returns nearly immediately. It simply sets some signals and

        optimistically assumes any running background processes will clean
        themselves up.

        This is done to improve the perceived end user experience.


        Returns HTTPStatus.OK if everything finished.
      operationId: update_cc_pair_status
      parameters:
        - name: cc_pair_id
          in: path
          required: true
          schema:
            type: integer
            title: Cc Pair Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CCStatusUpdateRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    CCStatusUpdateRequest:
      properties:
        status:
          $ref: '#/components/schemas/ConnectorCredentialPairStatus'
      type: object
      required:
        - status
      title: CCStatusUpdateRequest
    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
    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

````