Create a new loan by sending a POST request to the loans endpoint.
Request
POST https://tupel.com/api/loans/
Authentication
This endpoint requires basic authentication with your Organization ID and API Key.
Request Body Parameters
-
entity string Required
The UID of the entity (borrower) for which the loan is being created. Maximum length: 12 characters. -
currency string Required
Three-letter ISO currency code. Supported values:USD
,EUR
,GBP
, or other accepted currency codes. -
principal decimal Required
The amount to be loaned. Must be a positive number with up to 2 decimal places. -
pay_at timestamp Required
The date and time when the loan should be paid out to the recipient. Format: ISO 8601 (e.g.,2023-04-01T12:00:00Z
). -
due_at timestamp Required
The date and time when the loan is due to be paid back. Format: ISO 8601 (e.g.,2023-10-01T23:59:59Z
). -
recipient string Required
The UID of the recipient where loan funds will be sent. Must be a valid recipient UID. -
payment_method string Required
The UID of the payment method to be used for repayments. Must be a valid payment method UID. -
installments integer Optional
Number of installments for repayment. Default:1
. -
reference string Optional
Additional reference information for your internal tracking. Default: empty string. Maximum length: 50 characters. Must match pattern:^[0-9A-Za-z]+(?: [0-9A-Za-z]+)*
Notes
- The interest rate (
rate
) are determined by your organization's configuration, the entity's credit risk and volume. - When
installments
is greater than 1, the system will automatically create a repayment schedule in theinstallments
array. - The loan status will initially be set to
PENDING
and will transition toOPEN
once the funds are disbursed on thepay_at
date. - All timestamps should be provided in UTC timezone.