Varonis · JSON Structure

Varonis Datalert Update Alert Status Request Structure

UpdateAlertStatusRequest schema from Varonis DatAlert API

Type: object Properties: 3 Required: 2
Cloud SecurityComplianceData AnalyticsData GovernanceData SecurityThreat Detection

UpdateAlertStatusRequest is a JSON Structure definition published by Varonis, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

alertId status note

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/varonis/refs/heads/main/json-structure/varonis-datalert-update-alert-status-request-structure.json",
  "name": "UpdateAlertStatusRequest",
  "description": "UpdateAlertStatusRequest schema from Varonis DatAlert API",
  "type": "object",
  "properties": {
    "alertId": {
      "type": "string",
      "description": "Unique identifier of the alert to update."
    },
    "status": {
      "type": "string",
      "enum": [
        "Open",
        "Under Investigation"
      ],
      "description": "New status for the alert. Use CloseAlert endpoint to close."
    },
    "note": {
      "type": "string",
      "description": "Optional note to document the reason for the status change."
    }
  },
  "required": [
    "alertId",
    "status"
  ]
}