API for Submitting Insurance Adjustments (Deductible & Coverage)
Posted: Tue Sep 17, 2024 1:17 am
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?
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?