Employees
Get employee
employees.retrieve(stremployee_id) -> EmployeeRetrieveResponse
GET/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: …
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.
class EmployeeRetrieveResponse: …Response containing a single employee resource.
class EmployeeRetrieveResponse: …
Response containing a single employee resource.
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.