Page 1 of 1

ClaimProcs PUT - FeeBilled not working as Expected

Posted: Fri Dec 15, 2023 2:11 am
by manish.bhalodi.tech9
Whatever value we put in the Feebilled Field of ClaimProcs PUT Api body, It is not taking that and it is filling up from ProcedureLog Fee value to the ClaimProcs FeeBilled.

Example 1 - With FeeBilled Amount
Let's say ProcedureLog Fee Value is 10.00$ and ClaimProc FeeBilled Value is 20.00$.

I am calling below Api
PUT /claimprocs/293
{
"FeeBilled": "30.00",
"Remarks": "Updating through API"
}
Current Response
{
..
"FeeBilled": 10.00,
"Remarks": "Updating through API"
..
}

Expected Response
{
..
"FeeBilled": 30.00,
"Remarks": "Updating through API"
..
}

------------------------------------------------------------------------------------------------------------------

Example 2 - Without FeeBilled Amount
Let's say ProcedureLog Fee Value is 10.00$ and ClaimProc FeeBilled Value is 20.00$.

I am calling below Api
PUT /claimprocs/293
{
"Remarks": "Updating through API without FeeBilled used"
}
Current Response
{
..
"FeeBilled": 10.00,
"Remarks": "Updating through API without FeeBilled used"
..
}

Expected Response
{
..
"FeeBilled": 20.00,
"Remarks": "Updating through API without FeeBilled used"
..
}

Thank You in the Advance

Re: ClaimProcs PUT - FeeBilled not working as Expected

Posted: Fri Dec 15, 2023 9:24 am
by DerekR
Good Morning,

We are unable to duplicate the behavior you are describing. Is this only happening for a single claimproc? Have you been able to update FeeBilled successfully for any other claimprocs? Can you please include the actual response you are receiving so that we can assist you further.

Thanks!

Re: ClaimProcs PUT - FeeBilled not working as Expected

Posted: Wed Dec 11, 2024 8:23 am
by shripati.ukirde
Hello DerekR

FeeBilled is not updating for completed procedure?
I am trying to update fee billed for completed procedure but it is not working.
PUT : https://api.opendental.com/api/v1/claimprocs/3114
{
"FeeBilled":8
}

Re: ClaimProcs PUT - FeeBilled not working as Expected

Posted: Tue Aug 12, 2025 11:02 pm
by shripati.ukirde
Hello Open Dental Team,

Currently I am facing issue for update fee billed to the preauth claim proc.
I am using PUT endpoint https://www.opendental.com/site/apiclaimprocs.html
Body
{
"FeeBilled" :123
}

Getting BadRequest error with message "Cannot change FeeBilled when Status is Preauth."

Re: ClaimProcs PUT - FeeBilled not working as Expected

Posted: Wed Aug 13, 2025 10:30 am
by RyanH
shripati.ukirde wrote: Tue Aug 12, 2025 11:02 pm Hello Open Dental Team,

Currently I am facing issue for update fee billed to the preauth claim proc.
I am using PUT endpoint https://www.opendental.com/site/apiclaimprocs.html
Body
{
"FeeBilled" :123
}

Getting BadRequest error with message "Cannot change FeeBilled when Status is Preauth."
Hello shripati.ukirde.

Changing the FeeBilled on a PreAuth claimproc is discouraged. If this value needs to be updated, it’s recommended to update the ProcFee of the procedure first (procedurelogs PUT) and then send an empty payload to claimprocs PUT to recalculate the estimates.

Thanks!

Re: ClaimProcs PUT - FeeBilled not working as Expected

Posted: Tue Aug 26, 2025 1:45 am
by shripati.ukirde
Hello RyanH
Thanks for update