get_task_assignments
Retrieve all assignments for a specific task using its ID, enabling efficient task management and visibility within Binalyze AIR's digital forensics and incident response workflows.
Instructions
Get all assignments for a specific task by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
slug | Yes | The webhook slug (e.g., "air-generic-url-webhook") | |
taskId | Yes | The ID of the task to retrieve assignments for | |
token | Yes | The webhook token for authentication |
Input Schema (JSON Schema)
{
"properties": {
"slug": {
"description": "The webhook slug (e.g., \"air-generic-url-webhook\")",
"type": "string"
},
"taskId": {
"description": "The ID of the task to retrieve assignments for",
"type": "string"
},
"token": {
"description": "The webhook token for authentication",
"type": "string"
}
},
"required": [
"slug",
"taskId",
"token"
],
"type": "object"
}