download_case_ppc
Retrieve a PPC file by specifying the endpoint ID and task ID, enabling access to forensic data for analysis or incident response tasks.
Instructions
Download a PPC file for a specific endpoint and task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endpointId | Yes | The ID of the endpoint to download the PPC file for | |
taskId | Yes | The ID of the task to download the PPC file for |
Input Schema (JSON Schema)
{
"properties": {
"endpointId": {
"description": "The ID of the endpoint to download the PPC file for",
"type": "string"
},
"taskId": {
"description": "The ID of the task to download the PPC file for",
"type": "string"
}
},
"required": [
"endpointId",
"taskId"
],
"type": "object"
}