Skip to main content
Prior authorizations issued by payers to patients at a practice. One row per authorization, including the payer, authorization number, number of authorized units, period start and expire dates, an active flag, and any free-text notes. Referenced by claim.authorization_id. The table schema can be found in our HDB dbdocs reference. For reporting on but not limited to:
  • Currently active authorizations for a patient or practice
  • Authorizations expiring soon that may need renewal
  • How many claims have been billed against an authorization
  • Authorization counts and authorized-unit totals by payer
The authorization table does not store a “units used” counter. To see how an authorization has been consumed, join to claim on claim.authorization_id. The claim.authorization_id field is only populated when staff explicitly linked the authorization on the claim, so untagged claims will not appear in the join.

Active authorizations

Returns authorizations the practice has flagged active that have not been soft-deleted.

Authorizations expiring soon

Identifies authorizations expiring within the next 30 days. Useful for proactively requesting renewals.

Claims billed against each authorization

Counts the claims that were linked to each authorization. This is the right way to see how an authorization has been used, since the authorization table itself does not record consumption.
One claim is not necessarily one authorized unit - payers may count units per CPT line or per service date. If you need unit-level accounting, drop down to the charge grain rather than counting claims. Also, claims only appear here when staff tagged the authorization on the claim; untagged claims are invisible to this join.

Patient authorization history

Returns every authorization on file for a single patient, deleted rows included, ordered by most recently created.

Authorizations by payer

Aggregates authorization counts and total authorized units per payer.
If you have any questions about this topic please reach out to Elation Support Portal with the subject line HDB - <your_question>