Time Off Single Policy Reference
Policy
component allows platforms to create, edit, and manage individual time off policies.Time off and PTO policy creation page.
Basic Implementation
iframe
React
iframe implementation is the recommended way to get started with time off
Component Behavior & Navigation
Policy
component receives the prop policyId
, which must be a valid ID of a time off policy. The goBack
callback is used for returning to the previous screen (e.g. TimeOffSettings
).Policy Basic Details
Basic details section
Sick
, TimeOff
, and VacationPay
. These correspond to standard leave types used across payroll platforms.Balance Rules
Time off balances section
Employee Assignment and Balances
Employee status and balances
API Types and Integration Notes
PolicyTypeDto
; the list of employees assigned to a policy is defined via the IPolicyAssignedEmployee
interface; balances and assignments are defined using the IWorkerPolicyMapper
interface.Callbacks and Notifications
Event | Trigger | Payload |
---|---|---|
onTimeOffPolicyCreate | Admin creates a new time off policy | time_off_policy object |
onTimeOffPolicyEdit | Admin modifies an existing time off policy | time_off_policy object |
onTimeOffPolicyDelete | Admin deletes a time off policy | time_off_policy object |
onTimeOffPolicyAssign | Employee is added to a policy | time_off_policy object, employee_internal_id , employee_external_id , balance |
onTimeOffPolicyRemove | Employee is removed from a policy | time_off_policy object, employee_internal_id , employee_external_id , balance |
Component Properties
Property | Type | Required | Description |
---|---|---|---|
policyId | string | Yes | ID of the policy to display and manage |
goBack | () => void | Yes | Callback for navigating back to previous screen |
Custom Strings (optional)
đź’ˇ
Policy
component is designed to be used inside the broader time off settings interface, but it can also be rendered independently with just a policyId
identifier.