Is it possible to add the below fields to the api response for TreatPlanAttaches GET
tooth Number
Procedure Cost
Insurance Estimate
Patient Estimate
TreatPlanAttaches GET
Re: TreatPlanAttaches GET
Hello PBECKER,PBECKER wrote: Wed May 31, 2023 1:00 pm Is it possible to add the below fields to the api response for TreatPlanAttaches GET
tooth Number
Procedure Cost
Insurance Estimate
Patient Estimate
The TreatPlanAttach table has a FK to procedurelog.ProcNum. Using the procedurelog.ProcNum, you can look up the procedurelog. The procedurelog contains ProcFee and ToothNum.
1. Use TreatPlans GET, filter by patNum.
- You now have a list of treatment plans for a patient.
- You now have a list of treatment plan attaches for a specific patient.
- You now have a list of procedures for a patient.
We can add Procedurelogs GET (single), to our development list, if you'd like.
For Insurance Estimate and Patient Estimate, would this workflow be helpful?
https://www.opendentalsoft.com:8085/for ... 028#p35602
Re: TreatPlanAttaches GET
any way to update the existing TreatPlansAttaches GET to return all fields names instead of having to GET then compare with ProcedureLogs GET
Re: TreatPlanAttaches GET
TreatPlanAttaches GET does return all fields in the table.PBECKER wrote: Wed May 31, 2023 1:49 pm any way to update the existing TreatPlansAttaches GET to return all fields names instead of having to GET then compare with ProcedureLogs GET
Re: TreatPlanAttaches GET
for ProcedureLog GET we don't see insurance Estimate and Patient Estimate. Is it possible to get these two items added to ProcedureLog GET
Re: TreatPlanAttaches GET
No.PBECKER wrote: Wed May 31, 2023 3:08 pm for ProcedureLog GET we don't see insurance Estimate and Patient Estimate. Is it possible to get these two items added to ProcedureLog GET
Insurance Estimate and Patient Estimate are not part of the procedurelog table.
Re: TreatPlanAttaches GET
How can these items we added to any of the Treatplan Get methods and/or any other API call?
Note these fields are existing fields that are shown to patients for their treatment plan as the patients wants to see how much the insurance is covering and what is their out of pocket cost.
Thank you API team.
Note these fields are existing fields that are shown to patients for their treatment plan as the patients wants to see how much the insurance is covering and what is their out of pocket cost.
Thank you API team.
Re: TreatPlanAttaches GET
Hello PBECKER,PBECKER wrote: Thu Jun 01, 2023 10:40 am How can these items we added to any of the Treatplan Get methods and/or any other API call?
Note these fields are existing fields that are shown to patients for their treatment plan as the patients wants to see how much the insurance is covering and what is their out of pocket cost.
Thank you API team.
Insurance and patient estimates are complex and are calculated in Open Dental based on several different database tables. These fields may be shown to patients in Open Dental, but those calculations are not necessarily stored in the database.
As an example, this post explains how to derive patient portion information as seen on an appointment.
Depending on what you're after, ProcTPs GET may be a resource you are interested in.
Thanks!