The Enrollment Details page is accessible at two routes:Documentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
- Admin view:
/hr/benefits/enrollments/:id— requireshr.benefits.admin - Employee view:
/hr/my-benefits/enrollments/:id— no explicit permission gate
Overview
The admin enrollment detail page shows full enrollment information: employee name, plan name and type, coverage level, effective date, employee and employer monthly contributions, enrollment status, and a list of covered dependents with verification status. Pending enrollments display an Approve button and a Reject button (which opens a rejection reason dialog). The admin view is wrapped inRequirePermission for hr.benefits.admin.
The employee enrollment detail page (/hr/my-benefits/enrollments/:id) shows the same plan card, cost card, and dependents list but without admin actions. A breadcrumb is set to the plan name.
Both views use the same useBenefitEnrollmentDetail hook and the shared EnrollmentPlanCard, EnrollmentCostCard, and EnrollmentDependentsList components.
Who it’s for
- Admin view (
/hr/benefits/enrollments/:id): requires permissionhr.benefits.admin. - Employee view (
/hr/my-benefits/enrollments/:id): no explicit permission gate on this route.
Before you start
- The enrollment record must exist in your organization.
- For the admin view, you need the
hr.benefits.adminpermission.
Steps
- Navigate to the enrollment list (
/hr/benefits/enrollmentsor/hr/my-benefits) and click an enrollment row. - Review the plan card, cost breakdown, and covered dependents.
- (Admin only) If status is Pending, use Approve or Reject to act on the enrollment.
- When rejecting, enter a reason in the dialog and confirm.
Related
Human Resources
Human Resources core overview.
Governance & parity
This page documents shipped product behavior. It is not medical, legal, or
billing advice. Verify against your organization’s policies and applicable
regulations before using it for clinical, compliance, or billing decisions.
Protected health information (PHI) shown in the product is governed by your
tenant’s access controls and is never exposed in this documentation.
Documentation sources
Documentation sources
- src/routes/hr/benefits-routes.tsx
- src/cores/hr/benefits/pages/admin/EnrollmentDetailPage.tsx
- src/cores/hr/benefits/pages/employee/MyEnrollmentDetailPage.tsx
- src/cores/hr/benefits/hooks/useBenefitEnrollments.ts