EndpointsCreate Payment
Endpoints

Create Payment

Create payment for a existing loan.

  • Earliest claims will always be paid first.
  • Loan payments will be distributed by following order; DELAYED_INTEREST, INTEREST, PRINCIPAL.
  • In the case of overpayment, the overpaid amount will go towards the next claim. In case there are no future claims only the owed part is taken from the payment and remainder of overpayment is given back in response.
  • Partial payments minimum amount is determined by the loans given currencies minor unit. In the case of EUR it would be 0.01.
curl -X POST "https://api.lendermarket.com/claims/v1/lender/createLoanPayment" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -d '{
  "loanUuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "paymentAmount": "482",
  "currency": "EUR"
}'
{
  "data": {
    "uuid": "941dfdfc-65ff-43d8-aba8-5a395bdd7433",
    "loanUuid": "853dffbc-2997-4f2b-b236-af3f766d3fde",
    "principalAmount": "10.00",
    "interestAmount": "0.00",
    "delayedInterestAmount": "0.00",
    "paymentDate": "2026-01-28",
    "currency": "EUR"
  }
}
POST
/createLoanPayment
POST
Security Scheme
Bearer Token
Bearer Tokenstring
Required

Bearer authentication of the form Bearer <token>, where token is your auth token.

Bearer authentication of the form Bearer <token>, where token is your auth token.
Content-Typestring
Required

The media type of the request body

Options: application/json
loanUuidstring
Required

Unique UUID of the loan in the LM system

paymentAmountstring
Required

Total amount (Principal, Interest, Delayed Interest) that will be paid

currencystring
Required

Current validation restricted to EUR

Options: EUR
Request Preview
Response

Response will appear here after sending the request

Authentication

bearerAuth
header
Authorizationstring
Required

Bearer token. Bearer authentication of the form Bearer <token>, where token is your auth token.

Body

application/json
loanUuidstring
Required

Unique UUID of the loan in the LM system

paymentAmountstring
Required

Total amount (Principal, Interest, Delayed Interest) that will be paid

currencystring
Required

Current validation restricted to EUR

Allowed values:EUR

Responses

Was this page helpful?
Built with Documentation.AI

Last updated today