get_employee_info
Retrieve detailed employee information, including optional sensitive data, by providing an employee ID. Supports HR operations for structured employee data lookups.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
employee_id | Yes | The ID of the employee to retrieve information for | |
include_sensitive | No | Whether to include sensitive information like SSN (default: false) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"employee_id": {
"description": "The ID of the employee to retrieve information for",
"type": "string"
},
"include_sensitive": {
"default": false,
"description": "Whether to include sensitive information like SSN (default: false)",
"type": "boolean"
}
},
"required": [
"employee_id"
],
"type": "object"
}