curl --request POST \
--url https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Idempotency: <x-idempotency>' \
--data '
{
"businessDate": "2026-06-14",
"effectiveDate": "2026-06-14",
"transactionId": "<string>",
"amount": "100.00",
"quoteId": "550e8400-e29b-41d4-a716-446655440020"
}
'import requests
url = "https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments"
payload = {
"businessDate": "2026-06-14",
"effectiveDate": "2026-06-14",
"transactionId": "<string>",
"amount": "100.00",
"quoteId": "550e8400-e29b-41d4-a716-446655440020"
}
headers = {
"X-Idempotency": "<x-idempotency>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Idempotency': '<x-idempotency>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
businessDate: '2026-06-14',
effectiveDate: '2026-06-14',
transactionId: '<string>',
amount: '100.00',
quoteId: '550e8400-e29b-41d4-a716-446655440020'
})
};
fetch('https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'businessDate' => '2026-06-14',
'effectiveDate' => '2026-06-14',
'transactionId' => '<string>',
'amount' => '100.00',
'quoteId' => '550e8400-e29b-41d4-a716-446655440020'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"X-Idempotency: <x-idempotency>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments"
payload := strings.NewReader("{\n \"businessDate\": \"2026-06-14\",\n \"effectiveDate\": \"2026-06-14\",\n \"transactionId\": \"<string>\",\n \"amount\": \"100.00\",\n \"quoteId\": \"550e8400-e29b-41d4-a716-446655440020\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Idempotency", "<x-idempotency>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments")
.header("X-Idempotency", "<x-idempotency>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"businessDate\": \"2026-06-14\",\n \"effectiveDate\": \"2026-06-14\",\n \"transactionId\": \"<string>\",\n \"amount\": \"100.00\",\n \"quoteId\": \"550e8400-e29b-41d4-a716-446655440020\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Idempotency"] = '<x-idempotency>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"businessDate\": \"2026-06-14\",\n \"effectiveDate\": \"2026-06-14\",\n \"transactionId\": \"<string>\",\n \"amount\": \"100.00\",\n \"quoteId\": \"550e8400-e29b-41d4-a716-446655440020\"\n}"
response = http.request(request)
puts response.read_body{
"previousScheduleVersionId": "550e8400-e29b-41d4-a716-446655440031",
"scheduleVersion": {
"createdAt": "2026-06-14T12:00:00Z",
"id": "550e8400-e29b-41d4-a716-446655440030",
"installments": [
{
"dueDate": "2026-06-14T12:00:00Z",
"feesAmount": "3.50",
"interestAmount": "20.00",
"number": 3,
"penaltiesAmount": "1.50",
"principalAmount": "100.00",
"principalRemaining": "100.00",
"totalAmount": "125.00"
}
],
"loanAccountId": "550e8400-e29b-41d4-a716-446655440000",
"reason": "<string>",
"triggerTransactionId": "<string>",
"versionNumber": 2,
"predecessorVersionId": "550e8400-e29b-41d4-a716-446655440031"
}
}{
"code": "ERR-0001",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}Prepay loan account (BR alias)
BR-aliased path for prepaying a loan account. Resolves to the same handler as the core endpoint, with the jurisdiction resolver inserted into the chain. BR accounts require quoteId; when amount is also provided, it must equal the quote’s net settlement amount. Idempotency is enforced by the lib-commons idempotency middleware via the X-Idempotency header; a reused key with different facts yields 409. A missing quote, malformed UUID, or invalid amount yields 422.
curl --request POST \
--url https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Idempotency: <x-idempotency>' \
--data '
{
"businessDate": "2026-06-14",
"effectiveDate": "2026-06-14",
"transactionId": "<string>",
"amount": "100.00",
"quoteId": "550e8400-e29b-41d4-a716-446655440020"
}
'import requests
url = "https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments"
payload = {
"businessDate": "2026-06-14",
"effectiveDate": "2026-06-14",
"transactionId": "<string>",
"amount": "100.00",
"quoteId": "550e8400-e29b-41d4-a716-446655440020"
}
headers = {
"X-Idempotency": "<x-idempotency>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Idempotency': '<x-idempotency>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
businessDate: '2026-06-14',
effectiveDate: '2026-06-14',
transactionId: '<string>',
amount: '100.00',
quoteId: '550e8400-e29b-41d4-a716-446655440020'
})
};
fetch('https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'businessDate' => '2026-06-14',
'effectiveDate' => '2026-06-14',
'transactionId' => '<string>',
'amount' => '100.00',
'quoteId' => '550e8400-e29b-41d4-a716-446655440020'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"X-Idempotency: <x-idempotency>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments"
payload := strings.NewReader("{\n \"businessDate\": \"2026-06-14\",\n \"effectiveDate\": \"2026-06-14\",\n \"transactionId\": \"<string>\",\n \"amount\": \"100.00\",\n \"quoteId\": \"550e8400-e29b-41d4-a716-446655440020\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Idempotency", "<x-idempotency>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments")
.header("X-Idempotency", "<x-idempotency>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"businessDate\": \"2026-06-14\",\n \"effectiveDate\": \"2026-06-14\",\n \"transactionId\": \"<string>\",\n \"amount\": \"100.00\",\n \"quoteId\": \"550e8400-e29b-41d4-a716-446655440020\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://lender.sandbox.lerian.net/api/v1/br/loan-accounts/{id}/prepayments")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Idempotency"] = '<x-idempotency>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"businessDate\": \"2026-06-14\",\n \"effectiveDate\": \"2026-06-14\",\n \"transactionId\": \"<string>\",\n \"amount\": \"100.00\",\n \"quoteId\": \"550e8400-e29b-41d4-a716-446655440020\"\n}"
response = http.request(request)
puts response.read_body{
"previousScheduleVersionId": "550e8400-e29b-41d4-a716-446655440031",
"scheduleVersion": {
"createdAt": "2026-06-14T12:00:00Z",
"id": "550e8400-e29b-41d4-a716-446655440030",
"installments": [
{
"dueDate": "2026-06-14T12:00:00Z",
"feesAmount": "3.50",
"interestAmount": "20.00",
"number": 3,
"penaltiesAmount": "1.50",
"principalAmount": "100.00",
"principalRemaining": "100.00",
"totalAmount": "125.00"
}
],
"loanAccountId": "550e8400-e29b-41d4-a716-446655440000",
"reason": "<string>",
"triggerTransactionId": "<string>",
"versionNumber": 2,
"predecessorVersionId": "550e8400-e29b-41d4-a716-446655440031"
}
}{
"code": "ERR-0001",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}Authorizations
JWT bearer token issued by the identity provider.
Headers
Canonical idempotency request ID. Enforced by the lib-commons idempotency middleware.
"550e8400-e29b-41d4-a716-446655440011"
Path Parameters
Loan account identifier (UUID).
"550e8400-e29b-41d4-a716-446655440000"
Body
YYYY-MM-DD business date applied to the prepayment.
"2026-06-14"
YYYY-MM-DD effective date of the prepayment.
"2026-06-14"
Operator-supplied prepayment transaction identifier.
128Prepayment amount (2 d.p. string). Amount-only prepayment is available only for non-BR accounts; BR accounts require quoteId.
"100.00"
Settlement quote identifier. Required when amount is empty.
"550e8400-e29b-41d4-a716-446655440020"
Was this page helpful?

