ClaimProcs PUT - FeeBilled not working as Expected

For requests or help with our API
Post Reply
manish.bhalodi.tech9
Posts: 7
Joined: Tue Nov 16, 2021 7:25 am

ClaimProcs PUT - FeeBilled not working as Expected

Post by manish.bhalodi.tech9 » Fri Dec 15, 2023 2:11 am

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

DerekR
Posts: 81
Joined: Wed Aug 31, 2022 1:13 pm

Re: ClaimProcs PUT - FeeBilled not working as Expected

Post by DerekR » Fri Dec 15, 2023 9:24 am

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!

Post Reply