Getting patient's last verified eligibility
Getting patient's last verified eligibility
I'm having trouble figuring out how to get the lastVerifiedDate for a patient's Eligibility. I see https://opendental.com/site/apiinsverifies.html but would be really helpful to understand how to go from an appointment to getting this for the associated patient
Re: Getting patient's last verified eligibility
Good afternoon,
Information on how Insurance Verification works in Open Dental can be found here.
This data is stored in the InsVerify table. Patient eligibility uses the "PatientEnrollment" VerifyType. The FKey field for this VerifyType is the patplan.PatPlanNum. Adding the FKey field as parameter to InsVerifes GET (multiple) is already on our development list. Once it is complete, you can use the following strategy to obtain the information you need:
Information on how Insurance Verification works in Open Dental can be found here.
This data is stored in the InsVerify table. Patient eligibility uses the "PatientEnrollment" VerifyType. The FKey field for this VerifyType is the patplan.PatPlanNum. Adding the FKey field as parameter to InsVerifes GET (multiple) is already on our development list. Once it is complete, you can use the following strategy to obtain the information you need:
- Obtain the patient's patnum, either from the appointment or other source.
- Use PatPlans GET with the PatNum from Step 1 to get their patplan(s).
- Use the patplan.PatPlanNum as the FKey parameter with InsVerifies GET (multiple)
Re: Getting patient's last verified eligibility
Thank you! Do you have any timeline on development?
Re: Getting patient's last verified eligibility
Good afternoon od12345,
Enhancing insverifies GET (multiple) to filter by FKey value, is currently on our development list. We will reply to this thread when it is complete.
In the meantime, you can use insverifies GET with a VerifyType of PatientEnrollment, which narrows the results down considerably. Once you have that list filter the results where the FKey = patplan.PatPlanNum you're after.
Alternatively, you can use a ShortQuery to retrieve data however you'd like.
Thanks!
Re: Getting patient's last verified eligibility
This feature request is complete and is available in version 24.4.17.
See insverifies GET (multiple) for more information.
Thanks!
See insverifies GET (multiple) for more information.
Thanks!