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

# Update Workspace Config



## OpenAPI

````yaml /openapi.json put /api/workspaces/{id}/config
openapi: 3.1.0
info:
  title: Konduktor
  version: 0.1.0
servers:
  - url: http://localhost:8080
    description: Local instance (default)
security: []
paths:
  /api/workspaces/{id}/config:
    put:
      tags:
        - workspaces
      summary: Update Workspace Config
      operationId: update_workspace_config_api_workspaces__id__config_put
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            title: Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateWorkspaceConfigRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkspaceConfigResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    UpdateWorkspaceConfigRequest:
      properties:
        auto_fix_merge_conflicts:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Auto Fix Merge Conflicts
        auto_fix_ci_failures:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Auto Fix Ci Failures
      type: object
      title: UpdateWorkspaceConfigRequest
    WorkspaceConfigResponse:
      properties:
        auto_fix_merge_conflicts:
          type: boolean
          title: Auto Fix Merge Conflicts
        auto_fix_ci_failures:
          type: boolean
          title: Auto Fix Ci Failures
      type: object
      required:
        - auto_fix_merge_conflicts
        - auto_fix_ci_failures
      title: WorkspaceConfigResponse
    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
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````