Rapid7 · Schema

AssignUserToInvestigationRequest

Details about which user to assign.

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
user_email_address string The email address of the user to assign to this investigation, used to log into the Insight Platform.
View JSON Schema on GitHub

JSON Schema

rapid7-assignusertoinvestigationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssignUserToInvestigationRequest",
  "title": "AssignUserToInvestigationRequest",
  "type": "object",
  "description": "Details about which user to assign.",
  "properties": {
    "user_email_address": {
      "type": "string",
      "description": "The email address of the user to assign to this investigation, used to log into the Insight Platform.",
      "example": "[email protected]",
      "minLength": 1
    }
  },
  "required": [
    "user_email_address"
  ]
}