Employees
Get employee
employees.retrieve(employee_id) -> EmployeeRetrieveResponse { data }
GET/v1/employees/{employee_id}
Update employee
employees.update(employee_id, **kwargs) -> EmployeeUpdateResponse { data }
PATCH/v1/employees/{employee_id}
List employee enrollments
employees.list_enrollments(employee_id, **kwargs) -> PageNumberPage<Enrollment { id, answered_at, benefit, 10 more } >
GET/v1/employees/{employee_id}/enrollments
ModelsExpand Collapse
class Employee { id, classification_effective_date, compensation_type, 20 more }
class Employee { id, classification_effective_date, compensation_type, 20 more }
compensation_type_effective_date: Date
Date the employee’s current compensation type took effect
formatdate
deductions: Array[{ benefit_name, deduction_amount_in_cents, deduction_category, 4 more}]Payroll deductions from the most recent statement period. Replaced when a new statement is generated.
deductions: Array[{ benefit_name, deduction_amount_in_cents, deduction_category, 4 more}]
Payroll deductions from the most recent statement period. Replaced when a new statement is generated.
Full Time - Full Time
Part Time - Part Time
Temporary - Temporary
Intern - Intern
Seasonal - Seasonal
Individual Contractor - Individual Contractor
Full Time- Full TimePart Time- Part TimeTemporary- TemporaryIntern- InternSeasonal- SeasonalIndividual Contractor- Individual Contractor
class EmployeeRetrieveResponse { data } Response containing a single employee resource.
class EmployeeRetrieveResponse { data }
Response containing a single employee resource.
compensation_type_effective_date: Date
Date the employee’s current compensation type took effect
formatdate
deductions: Array[{ benefit_name, deduction_amount_in_cents, deduction_category, 4 more}]Payroll deductions from the most recent statement period. Replaced when a new statement is generated.
deductions: Array[{ benefit_name, deduction_amount_in_cents, deduction_category, 4 more}]
Payroll deductions from the most recent statement period. Replaced when a new statement is generated.
Full Time - Full Time
Part Time - Part Time
Temporary - Temporary
Intern - Intern
Seasonal - Seasonal
Individual Contractor - Individual Contractor
Full Time- Full TimePart Time- Part TimeTemporary- TemporaryIntern- InternSeasonal- SeasonalIndividual Contractor- Individual Contractor
class EmployeeUpdateResponse { data } Response containing a single employee resource.
class EmployeeUpdateResponse { data }
Response containing a single employee resource.
compensation_type_effective_date: Date
Date the employee’s current compensation type took effect
formatdate
deductions: Array[{ benefit_name, deduction_amount_in_cents, deduction_category, 4 more}]Payroll deductions from the most recent statement period. Replaced when a new statement is generated.
deductions: Array[{ benefit_name, deduction_amount_in_cents, deduction_category, 4 more}]
Payroll deductions from the most recent statement period. Replaced when a new statement is generated.
Full Time - Full Time
Part Time - Part Time
Temporary - Temporary
Intern - Intern
Seasonal - Seasonal
Individual Contractor - Individual Contractor
Full Time- Full TimePart Time- Part TimeTemporary- TemporaryIntern- InternSeasonal- SeasonalIndividual Contractor- Individual Contractor