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

# Update Check Suite Settings

> Update check suite settings for a repository.



## OpenAPI

````yaml api-reference/openapi3.json put /v1/organizations/{org_id}/repos/check-suite-settings
openapi: 3.1.0
info:
  title: Developer API
  description: API for application developers
  version: 1.0.0
servers:
  - url: https://api.codegen.com
    description: Codegen API
security: []
paths:
  /v1/organizations/{org_id}/repos/check-suite-settings:
    put:
      tags:
        - repositories
        - check-suite-settings
      summary: Update Check Suite Settings
      description: Update check suite settings for a repository.
      operationId: >-
        update_check_suite_settings_v1_organizations__org_id__repos_check_suite_settings_put
      parameters:
        - name: repo_id
          in: query
          required: true
          schema:
            type: integer
            description: Repository ID
            title: Repo Id
          description: Repository ID
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CheckSuiteSettingsRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response Update Check Suite Settings V1 Organizations  Org Id 
                  Repos Check Suite Settings Put
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CheckSuiteSettingsRequest:
      properties:
        check_retry_count:
          anyOf:
            - type: integer
              maximum: 10
              minimum: 0
            - type: 'null'
          title: Check Retry Count
          description: Global retry count for failed checks
        ignored_checks:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Ignored Checks
          description: List of check names to ignore
        check_retry_counts:
          anyOf:
            - additionalProperties:
                type: integer
              type: object
            - type: 'null'
          title: Check Retry Counts
          description: Per-check retry counts
        custom_prompts:
          anyOf:
            - additionalProperties:
                type: string
              type: object
            - type: 'null'
          title: Custom Prompts
          description: Custom prompts per check
        high_priority_apps:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: High Priority Apps
          description: Apps that trigger immediate processing on failure
      type: object
      title: CheckSuiteSettingsRequest
      description: Request model for updating check suite settings.
    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

````