API Guide - $0 Insurance Payments
Posted: Fri Mar 28, 2025 1:38 pm
Some developers requested the ability to make $0 claim payments via the API. We are adding this to the ClaimPayments POST logic now. We will update this thread once it is complete. In the meantime, developers can utilize the workflow below to create $0 claim payments. The underlined sections differ from the normal claim payment workflow.
You will need to already have the ClaimNum of the claim to which you want to apply the claim payment.
You will need to already have the ClaimNum of the claim to which you want to apply the claim payment.
- Use ClaimProcs GET with the ClaimNum parameter to get all of the ClaimProcs associated with the Claim. Note that claim payment cannot be made if any of these have a non-zero ClaimPaymentNum.
- Use ClaimProcs PUT to update the Status to “Received” and set the InsPayAmt to $0.00. Do this for each ClaimProc on the claim, except one, which needs to be set to $0.01 instead.
- Use Claims PUT to set the ClaimStatus to “Received”.
- Use ClaimPayments POST for the ClaimNum using a value of $0.01 for the InsPayAmt.
- Use ClaimPayments DELETE using the ClaimPaymentNum returned from Step 4.
- Use ClaimProcs PUT to set the InsPayAmt to $0.00 on the $0.01 claimproc in Step 2.
- Use ClaimPayments POST for the ClaimNum using a value of $0.00 for the InsPayAmt.