Skip to main content
PUT
/
v1
/
organizations
/
{org_id}
/
repos
/
check-suite-settings
Update Check Suite Settings
curl --request PUT \
  --url https://api.codegen.com/v1/organizations/{org_id}/repos/check-suite-settings \
  --header 'Content-Type: application/json' \
  --data '{
  "check_retry_count": 5,
  "ignored_checks": [
    "<string>"
  ],
  "check_retry_counts": {},
  "custom_prompts": {},
  "high_priority_apps": [
    "<string>"
  ]
}'
{}

Query Parameters

repo_id
integer
required

Repository ID

Body

application/json

Request model for updating check suite settings.

check_retry_count
integer | null

Global retry count for failed checks

Required range: 0 <= x <= 10
ignored_checks
string[] | null

List of check names to ignore

check_retry_counts
object | null

Per-check retry counts

custom_prompts
object | null

Custom prompts per check

high_priority_apps
string[] | null

Apps that trigger immediate processing on failure

Response

Successful Response

The response is of type object.