Skip to main content

BulkUpdateSettingsRequest

Bulk update settings request

change_reasonstring | nullnullable

Optional reason for the changes (for audit log)

Example: Batch configuration update for production
updates object[]required

List of settings to update

  • Array [
  • keystringrequired

    Setting key to update

    Example: scan.concurrent_jobs
    valuestringrequired

    New value for the setting

    Example: 4
  • ]
  • BulkUpdateSettingsRequest
    {
    "change_reason": "Batch configuration update for production",
    "updates": [
    {
    "key": "scan.concurrent_jobs",
    "value": "4"
    }
    ]
    }