remove_task_assignment_from_case
Remove a specific task assignment from a case by providing the case ID and task assignment ID to streamline case management in digital forensics and incident response workflows.
Instructions
Remove a specific task assignment from a case
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseId | Yes | The ID of the case to remove the task assignment from | |
taskAssignmentId | Yes | The ID of the task assignment to remove |
Input Schema (JSON Schema)
{
"properties": {
"caseId": {
"description": "The ID of the case to remove the task assignment from",
"type": "string"
},
"taskAssignmentId": {
"description": "The ID of the task assignment to remove",
"type": "string"
}
},
"required": [
"caseId",
"taskAssignmentId"
],
"type": "object"
}