The Provider Enrollment page lists all provider enrollment records and tracks re-credentialing deadlines. The legacy routeDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/pm/enrollment redirects to /pm/clearinghouse/enrollments; this page is at /pm/credentialing.
Overview
ProviderEnrollmentListPage loads enrollment records via useProviderEnrollmentList (filterable by search and enrollmentStatus) and re-credentialing deadlines via useRecredentialingDeadlines. Status options: pending, enrolled, denied, inactive. Status badges use STATUS_VARIANT with corresponding colors. Users can create new enrollments via ProviderEnrollmentFormDialog, soft-delete records (gated by permission), and navigate to detail pages at /pm/credentialing/enrollments/:enrollmentId.
Who it’s for
Requires permissionpm.admin (PM_PERMISSIONS.ADMIN).
Before you start
- Ensure provider records exist in the system before initiating enrollment.
- Re-credentialing deadline data is shown separately from the enrollment list.
Steps
Open Provider Enrollment
Navigate to Practice Management → Credentialing, or go to
/pm/credentialing.Filter enrollments
Use the search field to find enrollments by provider name or ID. Use the status dropdown to filter by
pending, enrolled, denied, or inactive.View re-credentialing deadlines
A dedicated tab or section shows upcoming re-credentialing deadlines loaded via
useRecredentialingDeadlines.Create a new enrollment
Click New Enrollment (requires
pm.admin) to open ProviderEnrollmentFormDialog and complete the form.Open an enrollment record
Click a record to navigate to
/pm/credentialing/enrollments/:enrollmentId for full detail and edit.Key concepts
- Enrollment status —
pending,enrolled,denied,inactivetrack the credentialing lifecycle. - Re-credentialing deadlines — upcoming renewal dates surfaced separately from the list view.
Related
Practice Management
Practice Management 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/pm.tsx
- src/cores/pm/pages/ProviderEnrollmentListPage.tsx
- src/cores/pm/hooks/useProviderEnrollmentList.ts
- src/cores/pm/hooks/useRecredentialingDeadlines.ts
- src/cores/pm/types/credentialing.ts