Update Repayment
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"amount": 10000,
"type": "principal",
"date": "2024-01-01",
"docs": [
{
"name": "Van Smitham",
"url": "https://edible-case.com/"
},
{
"name": "Regina Schultz MD",
"url": "https://critical-mechanic.net/"
},
{
"name": "Robert King V",
"url": "https://frivolous-vibraphone.org/"
}
]
}
Request samples
curl --location --request PUT '/repayments/680f3ab8033b27593170116b' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": 10000,
"type": "principal",
"date": "2024-01-01",
"docs": [
{
"name": "Van Smitham",
"url": "https://edible-case.com/"
},
{
"name": "Regina Schultz MD",
"url": "https://critical-mechanic.net/"
},
{
"name": "Robert King V",
"url": "https://frivolous-vibraphone.org/"
}
]
}'
Responses
application/json Modified at 2025-04-28 10:48:16