PUT api/LoanerInfo
Request Information
URI Parameters
None.
Body Parameters
transA| Name | Description | Type | Additional information |
|---|---|---|---|
| loanerId | integer |
None. |
|
| TotalPiedAmount | decimal number |
None. |
|
| FineAmount | decimal number |
None. |
|
| TransactionId | string |
None. |
|
| TransactionDate | date |
None. |
|
| InstallmentDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"loanerId": 1,
"TotalPiedAmount": 2.1,
"FineAmount": 3.1,
"TransactionId": "sample string 4",
"TransactionDate": "2026-05-30T11:10:12.81775-04:00",
"InstallmentDate": "2026-05-30T11:10:12.81775-04:00"
}
application/xml, text/xml
Sample:
<transA xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IskanApi.Controllers"> <FineAmount>3.1</FineAmount> <InstallmentDate>2026-05-30T11:10:12.81775-04:00</InstallmentDate> <TotalPiedAmount>2.1</TotalPiedAmount> <TransactionDate>2026-05-30T11:10:12.81775-04:00</TransactionDate> <TransactionId>sample string 4</TransactionId> <loanerId>1</loanerId> </transA>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |