get_case_users
Retrieve all users linked to a specific case by providing the case ID, enabling efficient user association management within Binalyze AIR's digital forensics platform.
Instructions
Get all users associated with a specific case by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the case to retrieve users for (e.g., C-2022-0001) | |
organizationIds | No | Organization IDs to filter users by. Leave empty to use default (0). |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the case to retrieve users for (e.g., C-2022-0001)",
"type": "string"
},
"organizationIds": {
"description": "Organization IDs to filter users by. Leave empty to use default (0).",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}