Employees
Get employee
employees.retrieve(stremployee_id) -> EmployeeRetrieveResponse
GET/v1/employees/{employee_id}
Update employee
employees.update(stremployee_id, EmployeeUpdateParams**kwargs) -> EmployeeUpdateResponse
PATCH/v1/employees/{employee_id}
List employee enrollments
employees.list_enrollments(stremployee_id, EmployeeListEnrollmentsParams**kwargs) -> SyncPageNumberPage[Enrollment]
GET/v1/employees/{employee_id}/enrollments
ModelsExpand Collapse
class Employee: …
class Employee: …
compensation_type_effective_date: date
Date the employee’s current compensation type took effect
formatdate
deductions: List[Deduction]Payroll deductions from the most recent statement period. Replaced when a new statement is generated.
deductions: List[Deduction]
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: …Response containing a single employee resource.
class EmployeeRetrieveResponse: …
Response containing a single employee resource.
compensation_type_effective_date: date
Date the employee’s current compensation type took effect
formatdate
deductions: List[Deduction]Payroll deductions from the most recent statement period. Replaced when a new statement is generated.
deductions: List[Deduction]
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: …Response containing a single employee resource.
class EmployeeUpdateResponse: …
Response containing a single employee resource.
compensation_type_effective_date: date
Date the employee’s current compensation type took effect
formatdate
deductions: List[Deduction]Payroll deductions from the most recent statement period. Replaced when a new statement is generated.
deductions: List[Deduction]
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