POST api/Repayment/ManualRepayment
Request Information
URI Parameters
None.
Body Parameters
RepaymentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LoanId | integer |
None. |
|
| MemberId | integer |
None. |
|
| SerialNumber | string |
None. |
|
| RepaymentAmount | decimal number |
None. |
|
| RepaymentDate | date |
None. |
|
| PaymentMode | byte |
None. |
|
| ReceiptNo | string |
None. |
|
| Remark | string |
None. |
|
| ProductionId | integer |
None. |
|
| CreatedAt | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"LoanId": 1,
"MemberId": 2,
"SerialNumber": "sample string 3",
"RepaymentAmount": 4.0,
"RepaymentDate": "2026-05-27T17:31:02.9275416+00:00",
"PaymentMode": 64,
"ReceiptNo": "sample string 7",
"Remark": "sample string 8",
"ProductionId": 1,
"CreatedAt": "2026-05-27T17:31:02.9285443+00:00"
}
application/xml, text/xml
Sample:
<RepaymentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UnionOwnersBackend.Models"> <CreatedAt>2026-05-27T17:31:02.9285443+00:00</CreatedAt> <LoanId>1</LoanId> <MemberId>2</MemberId> <PaymentMode>64</PaymentMode> <ProductionId>1</ProductionId> <ReceiptNo>sample string 7</ReceiptNo> <Remark>sample string 8</Remark> <RepaymentAmount>4</RepaymentAmount> <RepaymentDate>2026-05-27T17:31:02.9275416+00:00</RepaymentDate> <SerialNumber>sample string 3</SerialNumber> </RepaymentModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />