ClaimProcs PUT - FeeBilled not working as Expected
Posted: 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
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