client_employee_search
Search for an employee by name or email across every client when the specific client is unknown.
Instructions
Find an employee by name or email, across every client at once.
Use when the user says "find Jane Doe" or "is there anyone named
Smith in our system" without knowing which client they're at. Slow
path because it walks every client, so prefer client_employees
when you already know the client.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Name or email fragment to search for. | |
| status | No | Active employees only, terminated only, or everyone. | active |
| client_ids | No | Limit search to specific clients. Leave blank to search all. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| matches | Yes | ||
| searched_clients | Yes | ||
| count | Yes |