Skip to main content
One row per note per payment - the notes recorded against an Elation Billing payment, carrying the note text, who wrote it, and when. Notes arrive by two paths: a billing user working the payment in Elation Billing, or the EHR patient-payment integration posting a payment taken in the EHR. Only the first carries an elation_billing_user_id. Filter on is_deleted = false to exclude notes that have since been removed. This table’s columns and relationships are shown in the Hosted Database schema.
payment_note.payment_id joins to payment.id. payment_note.elation_billing_user_id joins to elation_billing_user.id and is an Elation Billing user identifier, not an Elation EHR user id.A null elation_billing_user_id means the note was created by the EHR patient-payment integration rather than by a person, which is the majority of notes today. Null here means system-created, not unknown.author_login is a point-in-time snapshot of the author’s login taken when the note was written, so it will not always match the current elation_billing_user.email - a user who was later deactivated or renamed keeps their old login on historical notes. Treat it as display text and do not join on it.
For reporting on but not limited to:
  • The full note history on a single payment, in the order it was written
  • Separating notes a biller wrote from notes the EHR patient-payment integration posted
  • Note volume per biller over a date range
  • Adding narrative context to a payment reconciliation report
  • Auditing what was said about a payment that was later adjusted or reversed

Note history for a payment

Returns every note on a single payment, oldest first. author_login is the fallback for notes with no billing user, which is where the EHR patient-payment integration notes show up.

Biller notes versus integration notes

Splits notes by where they came from. Notes posted by the EHR patient-payment integration have no billing user and their text is prefixed INTERNAL MEMO - .

Note volume per biller

Ranks billers by how many payment notes they wrote over the last 90 days. Integration notes are excluded because they have no billing user.

Recent payments with their notes

Pairs each payment from the last 30 days with its notes, plus the patient and practice the payment belongs to.
If you have any questions about this topic please reach out to Elation Support Portal with the subject line HDB - <your_question>