get_user
Retrieve comprehensive user data including email, names, role, and authentication status by providing a user ID. Requires 'Read User Info' permission.
Instructions
Get detailed information about a Panther user by ID
Returns complete user information including email, names, role, authentication status, and timestamps.
Permissions:{'all_of': ['Read User Info']}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user_id | Yes | The ID of the user to fetch |
Input Schema (JSON Schema)
{
"properties": {
"user_id": {
"description": "The ID of the user to fetch",
"examples": [
"user-123",
"john.doe@company.com",
"<admin@example.com>"
],
"title": "User Id",
"type": "string"
}
},
"required": [
"user_id"
],
"type": "object"
}