POST Prestamos/GetLoanFees
Request Information
URI Parameters
None.
Body Parameters
GetLoanFeesInputName | Description | Type | Additional information |
---|---|---|---|
ProductBankIdentifier | string |
None. |
|
FeesStatus | integer |
None. |
|
Paging | Paging |
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", "FeesStatus": 2, "Paging": { "OrderByField": "sample string 1", "PageStartIndex": 2, "PageSize": 3 }, "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:
<GetLoanFeesInput 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> <FeesStatus>2</FeesStatus> <Paging> <OrderByField>sample string 1</OrderByField> <PageSize>3</PageSize> <PageStartIndex>2</PageStartIndex> </Paging> <ProductBankIdentifier>sample string 1</ProductBankIdentifier> </GetLoanFeesInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetLoanFeesResultName | Description | Type | Additional information |
---|---|---|---|
LoanFees | Collection of LoanFee |
None. |
|
LoanFeesCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "LoanFees": [ { "CapitalBalance": 1.0, "FeeNumber": 1, "PrincipalAmount": 2.0, "DueDate": "2024-12-22T01:49:55.7770582-05:00", "InterestAmount": 4.0, "OverdueAmount": 5.0, "FeeStatusId": 64, "OthersAmount": 7.0, "TotalAmount": 8.0 }, { "CapitalBalance": 1.0, "FeeNumber": 1, "PrincipalAmount": 2.0, "DueDate": "2024-12-22T01:49:55.7770582-05:00", "InterestAmount": 4.0, "OverdueAmount": 5.0, "FeeStatusId": 64, "OthersAmount": 7.0, "TotalAmount": 8.0 } ], "LoanFeesCount": 1 }
application/xml, text/xml
Sample:
<GetLoanFeesResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Result"> <LoanFees> <LoanFee> <CapitalBalance>1</CapitalBalance> <DueDate>2024-12-22T01:49:55.7770582-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> <LoanFee> <CapitalBalance>1</CapitalBalance> <DueDate>2024-12-22T01:49:55.7770582-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> </LoanFees> <LoanFeesCount>1</LoanFeesCount> </GetLoanFeesResult>