Process a repayment for an existing loan by sending a POST request to the loan repayment endpoint.
Request
POST https://tupel.com/api/loans/{uid}/repay/
Authentication
This endpoint requires basic authentication with your Organization ID and API Key.
Path Parameters
- uid string Required
The unique identifier of the loan to repay.
Request Body Parameters
-
currency string Required
Three-letter ISO currency code for the repayment. Supported values:USD
,EUR
,GBP
, or other accepted currency codes. Must match the loan's currency. -
amount decimal Required
The amount to repay. Must be a positive number.
Repayment Process
When a repayment is initiated:
- A new payment with status
PENDING
is created - Funds are collected from the payment method associated with the loan
- Once the collection is successful, the payment status is updated to
SETTLED
- The loan's
paid
amount is increased and thebalance
is decreased - If the loan is fully repaid, its status is updated to
CLOSED
Partial Repayments
The API supports partial repayments:
- The repayment amount can be less than the total outstanding balance
- Multiple repayments can be made against the same loan
- For loans with installments, partial repayments reduce the outstanding balance and as such are applied to the all due installments equally
Currency Considerations
- The repayment currency must match the loan's currency
- If you need to make a repayment in a different currency, you must handle the currency conversion before calling this endpoint
Payment Methods
Repayments are collected using the payment method specified when the loan was created. The payment method cannot be changed for an individual repayment.
Notes
- Given
payments
are run asynchronously, the loan response may not have the new payment in thepayments
array. - The payment initially has a status of
PENDING
until the funds are collected successfully. - For visibility into the payment status, you should periodically check the loan details using the Retrieve a Loan endpoint.
- If a payment fails (e.g., due to insufficient funds), the payment status will be updated to
FAILED
and the loan balance will remain unchanged. - Interest calculations are handled automatically based on the loan's rate and the time since disbursement.
- For loans that are not in an
OPEN
status, repayment requests will result in an error.