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:
Which API should I use instead?
API for Submitting Insurance Adjustments (Deductible & Coverage)
Re: API for Submitting Insurance Adjustments (Deductible & Coverage)
You can submit insurance adjustments by using the ClaimProcs POST InsAdjust, or ClaimProcs PUT InsAdjust methods. See API ClaimProcs for more information.