Introduction
Lead supports both consumer and commercial lending programs. Today, loan origination is done through secure file transfers via SFTP. You can then disburse the loan by sending us a file with disbursement details or calling our Disbursement API.Disbursing Loans
Once a loan origination has been approved by Lead, you can use theclient_loan_id to set up a disbursement. To create a disbursement, use the Disbursement API.
In cases where the disbursement amount is $0 (primarily seen in cases where the full loan amount is withheld for a period of time), you should still call the Create Disbursement API endpoint.
Monitor Disbursements via Webhooks
After a Disbursement is created, it will transition through various states until it reaches a terminal state ofsucceeded or failed. At each state change we will send you a webhook that your system can ingest and use to make updates:
lending.disbursement.processingindicates that Lead is processing the disbursement. You can no longer cancel the disbursement.lending.disbursement.succeededconfirms the disbursement has succeeded. The funds should have landed in the counterparty’s account.lending.disbursement.failedindicates the disbursement has failed. Thefailureobject on the Disbursement object will provide details on the failure.
ACH Corrections
For ACH disbursements, there may be instances where the receiving bank identifies errors in the disbursement, such as incorrect account numbers. When such errors are detected, we will send you alending.disbursement.ach_correction event. This event can happen regardless of the disbursement being in the terminal state of succeeded or failed. This event is crucial as it alerts your system to discrepancies that need addressing.
In the case of ACH Corrections, please follow these steps:
Review the Correction: Assess the details provided in the
lending.disbursement.ach_correction event to understand the nature of the error.
Update Your Records: Correct the erroneous details in your system to prevent future disbursement failures.
For more details on events and webhooks, visit our Events & Webhooks page.

