d0dcc5024bd1
latestOpenAPI 3.0.42026-08-104969330.3 KBCases
Update case fees and/or principal
Updates the interest, reminder, and collection fees — and optionally the principal (GrossAmount) — on a case.
All provided values replace the current values. The grossAmount field is optional and backward-compatible: omitting it leaves the principal unchanged.
Fees typically change over time as collection activity progresses — for example due to legal costs, attorney fees, investigation charges, or other events.
When grossAmount is supplied:
- Both increases and decreases are allowed (no restriction on direction)
- The pre-legal success fee (commission) is silently recalculated and returned in the response
- The outstanding remainder is recalculated to reflect the new principal
- A timeline audit event is written recording the change (From/To principal and fees)
Prerequisites:
- The case must be assigned to this collection partner
- The case must not be Closed or Merged (returns 400 otherwise)
- All amounts must be ≥ 0 (negative values rejected)
put/cases/{id}/fees
Path parameters
idstring uuid required
Request body
Example request
{
"grossAmount": 1000,
"interestFees": 25.5,
"reminderFees": 10,
"collectionFees": 50
}Response
Fees updated successfully