POST Prestamos/GetLoanRates
Request Information
URI Parameters
None.
Body Parameters
GetLoanRatesInputName | Description | Type | Additional information |
---|---|---|---|
ProductBankIdentifier | string |
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", "Paging": { "OrderByField": "sample string 1", "PageStartIndex": 2, "PageSize": 3 }, "ChannelId": 2, "TenantId": "sample string 3", "UserLanguage": 4, "UserName": "sample string 5", "IpAddress": "sample string 6", "Location": "sample string 7" }
application/xml, text/xml
Sample:
<GetLoanRatesInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Input"> <ChannelId>2</ChannelId> <IpAddress>sample string 6</IpAddress> <Location>sample string 7</Location> <TenantId>sample string 3</TenantId> <UserLanguage>4</UserLanguage> <UserName>sample string 5</UserName> <Paging> <OrderByField>sample string 1</OrderByField> <PageSize>3</PageSize> <PageStartIndex>2</PageStartIndex> </Paging> <ProductBankIdentifier>sample string 1</ProductBankIdentifier> </GetLoanRatesInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetLoanRatesResultName | Description | Type | Additional information |
---|---|---|---|
LoanRates | Collection of LoanRate |
None. |
|
LoanRatesCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "LoanRates": [ { "InitialDate": "2024-12-22T02:10:44.3060819-05:00", "Rate": 2.0 }, { "InitialDate": "2024-12-22T02:10:44.3060819-05:00", "Rate": 2.0 } ], "LoanRatesCount": 1 }
application/xml, text/xml
Sample:
<GetLoanRatesResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Result"> <LoanRates> <LoanRate> <InitialDate>2024-12-22T02:10:44.3060819-05:00</InitialDate> <Rate>2</Rate> </LoanRate> <LoanRate> <InitialDate>2024-12-22T02:10:44.3060819-05:00</InitialDate> <Rate>2</Rate> </LoanRate> </LoanRates> <LoanRatesCount>1</LoanRatesCount> </GetLoanRatesResult>