fetch_employees
Retrieve all employee records for a company from the Paylocity system. Use this tool to access comprehensive employee data including details, earnings, and company information.
Instructions
Fetch all employees for a company.
Args: company_id: Optional company ID (string or integer). If not provided, uses the first company ID from configuration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company_id | No |
Input Schema (JSON Schema)
{
"properties": {
"company_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Company Id"
}
},
"type": "object"
}