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
ClaimProcs PUT - FeeBilled not working as Expected
-
manish.bhalodi.tech9
- Posts: 9
- Joined: Tue Nov 16, 2021 7:25 am
Re: ClaimProcs PUT - FeeBilled not working as Expected
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!
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!
-
shripati.ukirde
- Posts: 22
- Joined: Wed Apr 06, 2022 4:24 am
Re: ClaimProcs PUT - FeeBilled not working as Expected
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
}
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
}
-
shripati.ukirde
- Posts: 22
- Joined: Wed Apr 06, 2022 4:24 am
Re: ClaimProcs PUT - FeeBilled not working as Expected
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."
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
Hello shripati.ukirde.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."
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!
-
shripati.ukirde
- Posts: 22
- Joined: Wed Apr 06, 2022 4:24 am
Re: ClaimProcs PUT - FeeBilled not working as Expected
Hello RyanH
Thanks for update
Thanks for update