Update Lending TXN
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"amount": 0,
"interestRate": 0,
"interestType": "Monthly",
"startDate": "string",
"remarks": "string",
"status": "active",
"docs": [
{
"name": "string",
"url": "string"
}
]
}
Request samples
curl --location --request PUT '/loans/' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": 0,
"interestRate": 0,
"interestType": "Monthly",
"startDate": "string",
"remarks": "string",
"status": "active",
"docs": [
{
"name": "string",
"url": "string"
}
]
}'
Responses
application/json Modified at 2025-04-23 06:57:20