Page 1 of 1

API for Submitting Insurance Adjustments (Deductible & Coverage)

Posted: Tue Sep 17, 2024 1:17 am
by induced
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',
MonetaryAmt: MaximumsAndDeductibles.IndividualAnnualDeductible,
TimePeriod: 'CalendarYear',
CoverageLevel: 'Individual',
});

It should ideally be seen here:
Image

Which API should I use instead?

Re: API for Submitting Insurance Adjustments (Deductible & Coverage)

Posted: Tue Sep 17, 2024 7:44 am
by DerekR
You can submit insurance adjustments by using the ClaimProcs POST InsAdjust, or ClaimProcs PUT InsAdjust methods. See API ClaimProcs for more information.