update_security_finding_status
Modify the status of a security finding in RAD Security by specifying its ID and updating it to 'open', 'closed', or 'ignored' for effective security management.
Instructions
Update the status of a security finding
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Finding ID to update | |
status | Yes | New status for the finding |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Finding ID to update",
"type": "string"
},
"status": {
"description": "New status for the finding",
"enum": [
"open",
"closed",
"ignored"
],
"type": "string"
}
},
"required": [
"id",
"status"
],
"type": "object"
}