The Managed Care Authorizations dashboard atDocumentation 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/managed-care-auth centralizes authorization tracking for managed care plans, showing lifecycle status, unit utilization, and expiration across all payer contracts.
Overview
The page loads authorizations frompm_managed_care_authorizations via useManagedCareAuthorizations, joining patient names (pm_patients) and payer names (pm_payers). Results are sorted by expiration_date ascending by default and paginated at 50 per page. A search bar filters the visible list by authorization number, patient name, payer name, or service type without a server round-trip. Authorized and used units are tracked per record alongside effective and expiration dates. Users with pm.managed_care_auth.create see two action buttons: New Authorization (opens AuthorizationFormDialog) and Retro Auth (opens RetroAuthFormDialog for retroactive authorization submission). Detail records are accessible via /pm/managed-care-auth/:id. A utilization summary report is available at /pm/managed-care-auth/utilization.
Who it’s for
Requirespm.managed_care_auth.view (PM_PERMISSIONS.MANAGED_CARE_AUTH_VIEW). Create and edit actions additionally require pm.managed_care_auth.create (checked via PermissionGate in the page header).
Before you start
- Your role must include
pm.managed_care_auth.view. - At least one payer must be configured in
pm_payersfor the authorization form to function. - Patients must exist in
pm_patientsbefore an authorization can be linked to them.
Steps
Open the Managed Care Authorizations dashboard
Navigate to
/pm/managed-care-auth. The page loads all non-deleted authorizations for your organization, sorted by expiration date.Filter and search
Use the Auth Dashboard Filters panel to filter by payer, service type, site, patient, or status. Type in the search box to match by auth number, patient name, payer name, or service type.
Review the authorization table
The
AuthDashboardTable displays each authorization with linked patient, payer, auth number, service type, status, effective/expiration dates, and unit utilization.Open an authorization detail
Click a row to navigate to
/pm/managed-care-auth/:id for the full authorization record.Create a new authorization (authorized users)
Click New Authorization to open the authorization form dialog. Complete the required fields and submit to create the record in
pm_managed_care_authorizations.Key concepts
Managed care authorization — Payer approval required before rendering certain services. Tracked byauth_number, service_type, effective_date, expiration_date, authorized_units, and used_units.
Unit utilization — The ratio of used_units to authorized_units. The dashboard table surfaces both values per authorization.
Retro authorization — An authorization submitted after services have already been delivered, entered via the RetroAuthFormDialog.
Empty state (no authorizations)
Empty state (no authorizations)
Error state
Error state
A card with a destructive text message (sanitized) replaces the table if the data query fails.
Related
Practice Management
Overview of the Practice Management core.
Governance & parity
Documentation coverage and governance.
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/ManagedCareAuthDashboardPage.tsx
- src/cores/pm/hooks/useManagedCareAuthorizations.ts
- src/platform/permissions/constants.ts