get_task_assignments_by_id
Retrieve all assignments linked to a specific task using its unique ID to streamline task management and ensure accurate tracking within Binalyze AIR's forensics and incident response system.
Instructions
Get all assignments associated with a specific task by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | The ID of the task to retrieve assignments for |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "The ID of the task to retrieve assignments for",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}