search_employees
Search for employees by name, department, company, location, job code, or status. Returns a list of matching employees with basic info.
Instructions
Search for employees by various criteria.
:param name: Search by employee name (partial match supported)
:param department: Filter by department ID
:param company: Filter by company code
:param location: Filter by location code
:param job_code: Filter by job code
:param status: Filter by status: 'active' (default), 'inactive', 'terminated', or 'all'
:param limit: Maximum results to return (default 50)
:return: List of matching employees with basic info
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| limit | No | ||
| status | No | active | |
| company | No | ||
| job_code | No | ||
| location | No | ||
| department | No |