PUT: Update RRP Setting Erin Conry https://api.bitsighttech.com/ratings/v1/companies/company_guid/risk-remediation-plan/settings/settings_guidUpdate a custom RRP setting. Only the creator of the setting may update it. All provided fields replace their current values; omit a field to leave it unchanged.Request BodyFieldDescriptionnameString — OptionalUpdated display name. Maximum 50 characters.descriptionString or Null — OptionalUpdated description. Maximum 500 characters. Set to null to clear.excluded_findingsArray — OptionalUpdated list of rolledup_observation_id values to exclude. Replaces the existing list entirely.exclusion_reasonString or Null — OptionalUpdated reason for the exclusions. Maximum 500 characters. Set to null to clear.is_sharedBoolean — OptionalUpdated sharing preference. Set to true to make the setting visible to all company users, or false to make it private.Example Requestcurl -X PUT https://api.bitsighttech.com/ratings/v1/companies/a940bb61-33c4-42c9-9231-c8194c305db3/risk-remediation-plan/settings/3fa85f64-5717-4562-b3fc-2c963f66afa6 \ -u api_token: \ -H "Content-Type: application/json" \ -d '{"name": "Exclude legacy hosts v2", "is_shared": false}'Example Response{ "guid": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "risk_vector": "web_appsec", "name": "Exclude legacy hosts v2", "description": "Exclude hosts scheduled for decommission", "exclusion_reason": "Host decommission in progress", "excluded_findings": ["f04XjmWh4Vfc4ghT18Dfxg=="], "is_shared": false, "user_guid": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2026-04-15T20:35:13.775Z" }Response AttributesFieldDescriptionguidString [uuid]Unique identifier for this setting.risk_vectorStringRisk vector slug this setting applies to. Cannot be changed after creation.nameStringDisplay name of this setting.descriptionString or NullOptional description of this setting.exclusion_reasonString or NullReason the specified findings were excluded.excluded_findingsArrayList of rolledup_observation_id values excluded from plans using this setting.is_sharedBooleanWhether this setting is visible to all users in the company.user_guidString [uuid]GUID of the user who created this setting.created_atString [datetime]ISO 8601 timestamp of when this setting was originally created.Status Codes200 – OkayEverything worked as expected.401 – UnauthorizedNo valid API token was provided.403 – Permission DeniedYou do not have permission to access this resource.404 – Not FoundThe specified setting does not exist or is not accessible to the requesting user.422 – Unprocessable EntityA field value is invalid. Feedback 0 comments Please sign in to leave a comment.