POST Prestamos/GetLoanFee
Request Information
URI Parameters
None.
Body Parameters
GetLoanFeeInputName | Description | Type | Additional information |
---|---|---|---|
ProductBankIdentifier | string |
None. |
|
FeeNumber | integer |
None. |
|
ChannelId | integer |
None. |
|
TenantId | string |
None. |
|
UserLanguage | integer |
None. |
|
UserName | string |
None. |
|
IpAddress | string |
None. |
|
Location | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ProductBankIdentifier": "sample string 1", "FeeNumber": 2, "ChannelId": 3, "TenantId": "sample string 4", "UserLanguage": 5, "UserName": "sample string 6", "IpAddress": "sample string 7", "Location": "sample string 8" }
application/xml, text/xml
Sample:
<GetLoanFeeInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Input"> <ChannelId>3</ChannelId> <IpAddress>sample string 7</IpAddress> <Location>sample string 8</Location> <TenantId>sample string 4</TenantId> <UserLanguage>5</UserLanguage> <UserName>sample string 6</UserName> <FeeNumber>2</FeeNumber> <ProductBankIdentifier>sample string 1</ProductBankIdentifier> </GetLoanFeeInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetLoanFeeResultName | Description | Type | Additional information |
---|---|---|---|
LoanFee | LoanFee |
None. |
Response Formats
application/json, text/json
Sample:
{ "LoanFee": { "CapitalBalance": 1.0, "FeeNumber": 1, "PrincipalAmount": 2.0, "DueDate": "2025-04-03T21:13:59.7530719-05:00", "InterestAmount": 4.0, "OverdueAmount": 5.0, "FeeStatusId": 64, "OthersAmount": 7.0, "TotalAmount": 8.0 } }
application/xml, text/xml
Sample:
<GetLoanFeeResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Result"> <LoanFee> <CapitalBalance>1</CapitalBalance> <DueDate>2025-04-03T21:13:59.7530719-05:00</DueDate> <FeeNumber>1</FeeNumber> <FeeStatusId>64</FeeStatusId> <InterestAmount>4</InterestAmount> <OthersAmount>7</OthersAmount> <OverdueAmount>5</OverdueAmount> <PrincipalAmount>2</PrincipalAmount> <TotalAmount>8</TotalAmount> </LoanFee> </GetLoanFeeResult>