Search found 4 matches

by induced
Tue Sep 24, 2024 1:08 am
Forum: API
Topic: Benefit Deletion and API Filtering Issues
Replies: 1
Views: 6959

Benefit Deletion and API Filtering Issues

Issue 1: Unintended Deletion of All Benefits Description: When attempting to delete a single benefit from the PMS, all benefits are being deleted instead. This occurs when using the following code snippet: for (const benefit of benefitsToDelete) { await makeApiRequest('DELETE', `/benefits/${benefit....
by induced
Tue Sep 17, 2024 9:33 am
Forum: API
Topic: Updating Orthodontic Maximum Not Reflecting in OpenDental UI
Replies: 1
Views: 7230

Updating Orthodontic Maximum Not Reflecting in OpenDental UI

We're using the /benefits API to update orthodontic information, including the lifetime maximum, but it's not appearing in the expected field in the OpenDental UI. Here's our current code: console.log('🦷 Updating orthodontic information...'); try { const orthoCovCat:any = coverageCategoryMapping['Or...
by induced
Tue Sep 17, 2024 9:28 am
Forum: API
Topic: API for Uploading Patient Eligibility Verification PDF
Replies: 1
Views: 6926

API for Uploading Patient Eligibility Verification PDF

Looking for guidance on how to upload a patient's eligibility verification as a PDF to OpenDental via API. Key questions: Which API endpoint should I use for this upload? How can I ensure the PDF is properly attached to the patient's record? Are there any specific parameters or data formats required...
by induced
Tue Sep 17, 2024 1:17 am
Forum: API
Topic: API for Submitting Insurance Adjustments (Deductible & Coverage)
Replies: 1
Views: 6717

API for Submitting Insurance Adjustments (Deductible & Coverage)

Need help identifying the correct API endpoint to submit insurance adjustments (specifically Insurance used and deductible used). The benefits API doesn't work for this purpose. Example of failed attempt: await makeApiRequest('POST', '/benefits', { PlanNum: planNum, BenefitType: 'Deductible', Moneta...