Stream: implementers
Topic: Prior Authorization Related attributes
Shalinee Batri (Aug 08 2018 at 02:56):
Hi , Could you let me know which FHIR resource and what attributes represent prior authorization type code and prior authorization number that is submitted to the Pharmacy for medications that need pri-auth. Looks like Claim.use = proposed and Claim.identifier are the ones but not sure completely. Thank you.
Lloyd McKenzie (Aug 08 2018 at 02:58):
It should be ClaimResponse - Claim would be for prior auth request. ClaimResponse would be the actual prior auth. @Paul Knapp , can you confirm the data elements?
Lloyd McKenzie (Aug 08 2018 at 02:58):
(And how the ClaimResponse would link to the MedicationRequest)
Paul Knapp (Aug 08 2018 at 09:37):
@Shalinee Batri @Lloyd McKenzie A prior authorization would use a Claim resource with Claim.use="preauthorization" (we changed the code value from 'proposed' to 'preauthorization'). The ClaimResponse would return the prior authorization number in ClaimResponse.insurance.preAuthRef and you would supply that in the subsequent Claim.insurance.preAuthRef .
Also Shalinee, would you mind sharing for which country you are using this?
Shalinee Batri (Aug 08 2018 at 10:26):
@Paul Knapp we would be using it for US. Could you also let me know how it would link to MedicationRequest .
Paul Knapp (Aug 08 2018 at 10:43):
@Shalinee Batri The MedicationRequest doesn't have an efficient place to hold the Prior Auth Number - I would have expected insurance to be a 0..* complex element containing (at a minimum) coverage 0..1 Reference(Coverage) and preAuthRef 0..* string. Instead the structure is insurance 0..* Reference(Coverage|ClaimResponse) - this assumes that they only way to get a Pre Auth Number is via a ClaimResponse - which is a very heavy way to convey a short string and ignores the reality that the Pre Auth Number may have been supplied in correspondence such as email or a letter or over the phone.
If in your use case there will always be a ClaimResponse then you could include a reference to that resource, otherwise I'd suggest putting in a ballot comment in the upcoming ballot and reviewing the approach for proper handling of the Pre Auth Number with Financial Management, Attachments and Pharmacy at the September HL7 WGM meeting.
Lloyd McKenzie (Aug 08 2018 at 14:03):
@Paul Knapp To clarify, the Claim is the prior authorization request. The actual prior authorization record that you'd include with the prescription (if authorization was granted) would be the ClaimResponse, correct?
Lloyd McKenzie (Aug 08 2018 at 14:06):
The reason for the full ClaimResponse is that the authorization may be for a particular quantity, for particular frequency, etc. The pharmacy will need to know exactly what the authorization was for to understand what sorts of substition you can get away with. It'll also want to know how much is going to be covered when discussing with the patient.
Paul Knapp (Aug 08 2018 at 20:54):
@Lloyd McKenzie @Shalinee Batri Payors provide a short authorization number or reference, typically less than 14 characters, via whatever means they communicate it: could be via a ClaimResponse but may be on paper or over the phone. While one could send the whole ClaimResponse to the Insurer, or the payors local reference to it (or a logical reference) not the providers local reference to it, it is conventional to just send the string of characters.
Lloyd McKenzie (Aug 08 2018 at 21:38):
The question isn't what to send to payers - the question is what to send to the downstream clinical system that needs to know what's preauthorized.
Paul Knapp (Aug 08 2018 at 21:46):
@Lloyd McKenzie @Shalinee Batri The downstream provider in your examples is the party who would typically do the preauthorization. Typically it is done by the same party who does the claim. If there is utility to send the ClaimResponse ok, but more value I would think would come from sending an ExplanationOfBenefit downstream as it has all the information needed and none of the more private provider-payer information.
Lloyd McKenzie (Aug 08 2018 at 22:08):
In the case of pharmacy, it's often helpful if the ordering provider does the preauth - because they're the ones who can best fill out any forms - or change to a different drug if the payer requires. The pharmacy doesn't generally have that information.
Shalinee Batri (Aug 09 2018 at 03:24):
@Lloyd McKenzie right ! In our case , app is intended for providers who will be querying that if a prior auth required for a medication as per the benefit plan ( PBM ) that patient is holding. If PA is required , so they will send the claim resource (I'm just assuming) to the Payer and get response (ClaimResponse ) from Payer back. If it's approved then he might include that auth number in the med order and send that to preferred pharmacy selected. This is the workflow that we might be implementing. Still analyzing.
Paul Knapp (Aug 09 2018 at 08:26):
@Shalinee Batri Right, the prescribing provider may send a preauthorization request and "... might include that auth number in the med order …", not the whole preauthorization response from the insurer.
MaryKay McDaniel (Aug 10 2018 at 16:39):
@Shalinee just asking the question here, but is there a reason you wouldn't be using the NCPCP transactions created for this purpose?
Lloyd McKenzie (Aug 10 2018 at 17:53):
NCPDP is only relevant in the US
Paul Knapp (Aug 10 2018 at 17:55):
@Lloyd McKenzie @MaryKay McDaniel She is using it for the US, see above.
Radu Craioveanu (Apr 10 2019 at 20:44):
can someone please remind me what is the right way to model Prior Authorization.
Radu Craioveanu (Apr 10 2019 at 20:46):
as part of our ambulatory workflow, we are adding getting Transportation setup for our patients. What is the right way to model the Transportation. It is like an Order or Service Request, and ideally is tied into the Patient and Clinic schedule.
Lloyd McKenzie (Apr 10 2019 at 21:21):
I'm sort of expecting Transportation to end up manifesting as a new resource. @Paul Knapp ?
Paul Knapp (Apr 24 2019 at 10:44):
Modeling of Transportation may very well be a new resource, but if it is simply a matter of getting authorization for a coded transportation service then that would be a coded line item on the prior authorization or Claim. For example, T001 = ambulance, < 20 miles, T002 = ambulance 21-100 miles, T003 = ambulance > 100 miles;, T010 = air ambulance , etc.
Brian Postlethwaite (Apr 24 2019 at 10:53):
There are many types of transportation, and ways to charge for it. Especially in community or aged care at home settings too.
For example covering the cost of travel to the patient, or taking patients on excursions.
These may not involve any form of claims processing too, and just be simple invoicing, or internal charging/reimbursements.
Paul Knapp (Apr 24 2019 at 10:59):
Agreed, but the question was asked in the context of prior authorization so insurance was assumed.
Last updated: Apr 12 2022 at 19:14 UTC