The Loan object represents a financial loan created through the Tupel API. It includes details about the borrower entity, payment method, recipient, financial terms, and current status.
Attributes
-
uid string
Unique identifier for the loan. -
entity object
The Entity object representing the borrower or customer. Contains company information such as name, jurisdiction, and registration details. -
status string
Current status of the loan. Possible values:PENDING
,OPEN
,CLOSED
,OVERDUE
. -
currency string
Three-letter ISO currency code for the loan (e.g.,USD
,EUR
,GBP
, or other accepted currency codes). -
principal decimal
The initial loan amount. -
paid decimal
The amount that has been paid back so far. Defaults to0.00
. -
balance decimal
The remaining amount to be paid on the loan. -
rate decimal
The daily interest rate for the loan. -
fee decimal
The month-to-date accrual of daily interest. Resets to zero at the start of every month. Defaults to0.00
. -
due_at timestamp
The date and time when the loan repayment is due. -
pay_at timestamp
The date and time when the loan should be paid out to the recipient. -
reference nullable string
Optional reference information for the loan. -
recipient object
The Recipient object representing where the loan funds will be sent. -
payment_method object
The Payment Method object representing how repayments will be made. -
created_at timestamp
Time at which the loan was created. -
updated_at timestamp
Time at which the loan was last updated.
More Attributes
-
payments array of objects
List of Payment objects associated with this loan. -
invoices array of objects
List of Invoice objects associated with this loan. -
attachments array of objects
List of Attachment objects with supporting documentation for this loan. -
installments array of timestamps
Due dates for loan repayments.
Creating a Loan
To create a new loan, use a POST request to /api/loans/
with the following parameters:
Required Parameters
-
entity string
The UID of the entity (borrower) for the loan. -
currency string
Three-letter ISO currency code (USD
,EUR
,GBP
, or other accepted currency codes). -
principal decimal
The amount to be loaned. -
pay_at timestamp
When the loan should be paid out. -
due_at timestamp
When the loan should be paid back. -
recipient string
The UID of the recipient where funds will be sent. -
payment_method string
The UID of the payment method for repayments.
Optional Parameters
-
installments integer
Number of installments for repayment. Defaults to 1. -
reference string
Additional reference information. Defaults to empty string.