list_employees
List employees in the organization with filtering by status, pagination, and sorting. Use this to get employee IDs and details for other HR operations.
Instructions
List employees in the organization.
Args: status: 1 = active, 0 = inactive. Default active. page_number: Zero-based page index. per_page: Records per page (keep modest, e.g. 50-500). order: 'asc' or 'desc'.
Returns the raw employee list payload (id, name, department, etc.). Use this to resolve an employee's name to their numeric ID before calling employee- or report-specific tools.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | ||
| page_number | No | ||
| per_page | No | ||
| order | No | asc |