import_task_assignments_to_case
Assign tasks to a specific case by importing task assignment IDs, streamlining workflow management in digital forensics and incident response scenarios.
Instructions
Import task assignments to a specific case
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseId | Yes | ID of the case to import task assignments to | |
taskAssignmentIds | Yes | Array of task assignment IDs to import to the case |
Input Schema (JSON Schema)
{
"properties": {
"caseId": {
"description": "ID of the case to import task assignments to",
"type": "string"
},
"taskAssignmentIds": {
"description": "Array of task assignment IDs to import to the case",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"caseId",
"taskAssignmentIds"
],
"type": "object"
}