The Authorization Detail screen (Managed Care Authorization Tracking) displays a single authorization record with its unit utilization and tabbed sub-resources at 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/managed-care-auth/:id.
Overview
The page loads an authorization viauseAuthorizationDetail47, displaying the auth_number, auth_type, status, and an urgency badge derived from days remaining until expiration_date. Two summary cards show Authorization Details (patient name, payer, service type, effective/expiration dates, notes) and Unit Utilization (a progress bar comparing used_units to authorized_units). Three tabs — Reviews, Appeals, and Activity — allow users to record concurrent reviews, manage appeals, and view a combined activity timeline. Mutations for creating and updating reviews and appeals are provided via inline callbacks passed to each tab component.
Who it’s for
Requires permissionPM_PERMISSIONS.MANAGED_CARE_AUTH_VIEW (enforced via RequirePermission in the route definition).
Before you start
- You need the
pm.managed_care_auth.viewpermission to access this page. - The authorization must exist in your organization.
Steps
Open an authorization
From the Managed Care Authorizations dashboard (
/pm/managed-care-auth), click a row to open its detail page.Review summary cards
The Authorization Details card shows patient, payer, service type, effective and expiration dates, and notes. The Unit Utilization card shows used vs. authorized units with a visual bar.
Manage concurrent reviews
Select the Reviews tab to view existing concurrent reviews and add new review entries.
Key concepts
| Term | Meaning in code |
|---|---|
auth_number | Authorization number assigned by the payer |
auth_type | Type of authorization (values from payer; SME confirm) |
used_units / authorized_units | Units consumed vs. units approved |
unit_type | The unit of measure for the authorization |
expiration_date | Date after which the authorization is no longer valid |
daysRemaining | Computed: (expiration_date - now) / ms_per_day; drives urgency badge |
Related
Practice Management
Practice Management core overview.
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/AuthorizationDetailPage47.tsx
- src/cores/pm/hooks/useAuthorizationDetail47.ts
- src/cores/pm/hooks/useConcurrentReviews47.ts
- src/cores/pm/hooks/useAuthAppeals47.ts