get_case_tasks_by_id
Retrieve all tasks linked to a specific case using its ID. Utilize to query and organize tasks for incident response or digital forensics.
Instructions
Get all tasks associated with a specific case by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the case to retrieve tasks for | |
organizationIds | No | Organization IDs to filter tasks by. Leave empty to use default (0). |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the case to retrieve tasks for",
"type": "string"
},
"organizationIds": {
"description": "Organization IDs to filter tasks by. Leave empty to use default (0).",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}