get_user_by_id
Retrieve detailed user information by specifying the user ID, enabling efficient access to user data for digital forensics and incident response tasks.
Instructions
Get detailed information about a specific user by their ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the user to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the user to retrieve",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}