create_triage_tag
Generate triage rule tags to categorize and manage digital forensics and incident response data efficiently within Binalyze AIR. Assigns tags by name and organization ID.
Instructions
Create a new triage rule tag
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the tag to create | |
organizationId | No | Organization ID to associate the tag with. Defaults to 0. |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the tag to create",
"type": "string"
},
"organizationId": {
"description": "Organization ID to associate the tag with. Defaults to 0.",
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"name"
],
"type": "object"
}