fetch_employee_details
Retrieve specific employee information from Paylocity by providing employee ID and optional company ID to access employment details and records.
Instructions
Fetch details for a specific employee.
Args: company_id: Optional company ID (string or integer). If not provided, uses the first company ID from configuration. employee_id: Employee ID (string or integer) to get details for.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company_id | No | ||
employee_id | No |
Input Schema (JSON Schema)
{
"properties": {
"company_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Company Id"
},
"employee_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"default": null,
"title": "Employee Id"
}
},
"type": "object"
}